The final part of common tags based on HTML: forms and common tags in them

This is the last one to talk about html tags. The last tag is form, which is the most commonly used tag for data interaction. This expression is the data that can be submitted to the user, and the data format is generally: data name + data value This label is < form > < / form > The < form > tag is used to create an HTML fo ...

Posted by cjkeane on Sun, 12 Dec 2021 16:54:53 +0100

Chapter05 URL pattern (about URL pattern interception mechanism in servle t)

catalogue About URL pattern 1. Request index jsp 2.web.xml 3. MyController class 4. When the page is loaded. If the "/" static resource cannot be loaded, you need to specify the location of the static resource or add an annotation in MVC config Corresponding to two spring MVC config xml Corresponding static resource directory s ...

Posted by m!tCh on Sun, 12 Dec 2021 12:28:34 +0100

Node level of DOM - Document type

I. document sub node Shortcut to access child nodes: documentElement attribute: always point to the < HTML > element of the HTML page <html> <body> </body> </html> Access child nodes The document has only one child node, the < HTML > element This element can be obtained either through the docum ...

Posted by Eclectic on Fri, 10 Dec 2021 15:18:41 +0100

Five commonly used values of position attribute

Date: June 22, 2020 position attribute preface When it comes to the position attribute of CSS, we all know and have used it. However, if we say that it has several values and the differences between these values, some students may be speechless. After all, this does not affect daily development (manual dog head). As a programmer with dreams, ...

Posted by Chris Powell on Fri, 10 Dec 2021 14:56:18 +0100

How much do you know about color representation in the web?

prefaceTo represent various colors in the web, the first thing we think of is to use hexadecimal or RGB. But in the actual web, there are far more than these two. Today's article will talk to you about various ways of representing colors in the web.Take the following code as an example. You can copy the code to see the effect:HTML<div class= ...

Posted by ayzee on Thu, 09 Dec 2021 19:19:08 +0100

Python 3 Advanced JSON knowledge summary

Python 3 Advanced JSON knowledge summary JSON Why JSON Click here to learn the following while watching the video explanation Everyone has been shopping on Taobao, Jingdong and pinduoduo. Online shopping may use mobile phones or computer browsers. These Taobao, JD apps on mobile phones and website pages running in computer browsers ar ...

Posted by LeadingWebDev on Thu, 09 Dec 2021 12:21:31 +0100

P11:JSX code comment, HTML adding class, parsing HTML in JSX, label activating text box in JSX

elaborate After completing the "big sword" menu through the previous tutorial, if you follow me to do it, it means that your React has been introduced. It is also a good start. Although the next road is still long, it will be much smoother. This article will talk about some small pits that should be paid attention to in JSX synt ...

Posted by jsantama on Thu, 09 Dec 2021 11:25:00 +0100

Simple use of wangEditor rich text editor

introduce Wang editor is a lightweight web rich text editor, which is easy to configure and easy to use. Official website: www.wangEditor.com Document: www.wangedit.com/doc Source code: github.com/wangeditor-team/wangEditor For Vue and React Using wangEditor in Vue For vue3, refer to wangEditor-with-vue3 vue2 refer to wangedior with Vue. Usi ...

Posted by Garth Farley on Wed, 08 Dec 2021 04:07:20 +0100

First day of learning web front end

html table label Table -- > caption (table title) The code syntax is as follows: <table border="1"> <caption>My form</caption> </table> table - > colSpan (horizontal row) <table border="1"> <caption>My form</caption> <tr> <td>12</td> ...

Posted by superhoops on Tue, 07 Dec 2021 12:05:25 +0100

Javascript learning materials - week2-day5

1, window object 1.BOM   Browse object model     In fact, it is some ability to operate the browser             What can we do:             - Get some browser related information (window size)             - Operate the browser for ...

Posted by Caesar on Tue, 07 Dec 2021 05:14:30 +0100