Front end development foundation (JavaScript foundation I)

1, Introduction method: 1. Inline: <input type="button" value="Let me try" onclick="alert('Hello World')" /> You can write a single line or a small amount of JS code in the event attribute of the HTML tag (the attribute starting with on), such as onclickNote the use of single and double quotation marks: we recommend using double quota ...

Added by justinchrono on Wed, 19 Jan 2022 08:23:47 +0200

Application of Form in data stack: in depth

The topic of this article is a process of understanding and digesting the Form after it is used in several stacks of products. By introducing some formsThe methods commonly used in the Form to understand some design ideas and deepen our pursuit of technology. This paper mainly introduces the creation of Form and the two-way binding of Form (get ...

Added by BLottman on Wed, 19 Jan 2022 06:03:33 +0200

Ajax review 02-(form, axios interceptor, FormData file upload)

What is a form In web pages, forms are mainly responsible for data collection. The three components of a form The form for collecting data in the web page consists of three parts: form label, form field and form button. Form label The HTML form is a "container" used to delimit the specified area on the page as the form area Fo ...

Added by HHawk on Wed, 19 Jan 2022 02:56:35 +0200

Postgraduate entrance examination question brushing applet cloud development practice - basic knowledge reserve

prefaceFor the postgraduate entrance examination question brushing applet project, its technology stack is based on wechat native applet and cloud development capability. Therefore, it is necessary to install wechat developer tools locally, initialize the postgraduate entrance examination question brushing applet project, understand the project ...

Added by apervizi on Wed, 19 Jan 2022 02:53:21 +0200

JavaScript Foundation Day 01

1 - Programming Language 1.1 programming Programming: Is to let the computer use a programming language to write program code to solve a problem, and finally get the result. Computer program: It is a series of instructions executed by the computer, and all the programs are written in the language we master, so people must send commands to ...

Added by xeidor on Tue, 18 Jan 2022 23:07:50 +0200

In JavaScript, prototype and__ proto__ What's the difference?

This paper focuses on three issues prototype and proto function and object What happened to new prototype and proto First of all, let's talk about what puzzles us in JS, that is, prototype and__ proto__ What the hell is it __ proto__ Is the so-called prototype in Javascript (here, let's take a specific example to illustrate it) function ...

Added by zsxdcfv21 on Tue, 18 Jan 2022 22:08:08 +0200

chrome plug-in tutorial 3 - customizing pages and portals

Previously, we completed a simple plug - in I also know the manifest JSON format Now let's take a look at the entry points of chrome browser to operate our plug-ins Here only the commonly used ones are introducedPop pageI won't say more about this The previous one is used for batch opening gadgets Just use the pop portal Extra attention Here is ...

Added by hossfly007 on Tue, 18 Jan 2022 21:54:48 +0200

[JavaScript] setlntval function and built-in class

catalogue Remove the front and back blank trim Select all and deselect all check boxes Get the current system time Get milliseconds Periodic function setInterval Built in support class Array join method link Invert array: reverse() BOM programming open and close methods in window Message box pop-up (alert, confirm) history and locat ...

Added by Dargrotek on Tue, 18 Jan 2022 18:34:32 +0200

The end of the chrome plug-in tutorial - using vue to develop chrome plug-ins

Previously, we have learned about the communication between pages Authority and a series of operations You have mastered the basic skills to develop chrome extensions The rest is that you need to use some APIs. You can develop them by looking at the api documentation For the contemporary front end We only use native js and html to write our cod ...

Added by bhi0308 on Tue, 18 Jan 2022 17:50:59 +0200

Study notes_ Lemon

Study notes 1. Interface request status value 100: Temporary response 200: success 300: redirect 400: Access error 500: Server error; 502 no response 2.css Style Hide slider: ul::-webkit-scrollbar { display: none;} Control placeholder: :placeholder-shown Invalid tr label set for table: border-collapse: collapse; Hide the small eyes o ...

Added by busterbry on Tue, 18 Jan 2022 16:31:51 +0200