There are three types of list tags:
Unordered list ul
Yes Sequence list ol
Definition list dl
Effect:
Note:
li cannot exist alone and must be wrapped in ul; conversely, the "son" of ul cannot be anything else but li.
#ul's function is not to add small dots to the text, but to add the "semantics" of the unordered list.
Attribute
type="Attribute value". Attribute values can be selected: disc (solid dot, default), square (solid square dot), circle (hollow circle)
The effect is as follows:
- 张三
- 李四
- 王五
Effect:
Attributes:
type="attribute value"; the attribute value can be: 1, a, A, i, I; combined with the start attribute to indicate the starting number
dl has no attributes. The child elements of dl can only be dt and dd
dt: the title of the list, this tag is required
dd: the list of lists Item, you don’t need to write
Note: dt, dd can only be in dl; dl can only have dt, dd
Effect:
Table label is represented by < table > border: border. The unit is pixels style="border--collapse;collapse;": The cell line and the table border are merged Attributes
效果: 表单标签用< form >表示,用于与服务器的交互。表单就是收集用户信息的,就是让用户填写的,选择的 属性: name:表单的名称,用于JS来操作或控制表单时使用 id:表单的名称,用于JS来操作或控制表单时使用 action:指定表单数据的处理程序,一般是PHP method:表单数据的提交方式,一般取值:get(默认)和 post action属性就是表示,表单将提交到哪里。 method属性表示用什么HTTP方法提交,有get、post两种。 get提交和post提交的区别: POST方式: Enctype: Application/x-www-form-urlencoded:默认加密方式,除了上传文件之外的数据都可以 Multipart/form-data:上传附件时,必须使用这种编码方式。 用于接收用户输入 属性: type="text":文本类型。属性值可以为: 注:如果要限制上传文件的类型,需要配合JS来实现验证,对上传文件的安全检查:一是扩展名的检查,二是文件数据内的检查 text(默认):文本类型 password:密码类型 radio:单选按钮,名字相同的按钮作为一组进行单选(单选按钮,天生不能互斥,如果想要互斥,必须要有相同的name属性) checkbox:多选按钮,名字相同的按钮作为一组进行选择 checked:将单选按钮或多选按钮默认处于选择状态。当< input >标签的type="radio"时,可以用这个属性,属性值也是checked hidden:隐藏框,在表单中包含不希望用户看见的信息 button:普通按钮,结合JS代码进行使用 submit:提交按钮,传送当前表单的数据给服务器或者其他程序处理,这个按钮不需要写value自动就会有"提交"文字,点击按钮后,这个表单就会被提交到form标签的action属性中指定的我那个页面区 reset:重置按钮,清空当前表单的内容,并设置为最初的默认值 image:图片按钮,和提交按钮的功能完全一致,只不过图片按钮可以显示图片 file:文件选择框 value="内容":文本框里的默认内容 size="50":表示文本框可以显示五十个字符,一个英文或一个中文都算一个字符 注:size属性值的单位不是像素 readonly:文本框只读,不能编辑。因为它的属性值是readonly,所以属性值可以不写 disabled:文本框只读,不能编辑。光标点不进去,属性值可以不写 < select >标签里面的每一项都用< option >表示,select是"选择",option是 < select >属性: mutiple:可以对下啦列表中的选项进行多选,没有属性值 size="":如果属性值大于 1,则列表为滚动视图,默认属性值为1,即下拉视图 < option >属性: selected:预选中。没有属性值 效果: text是"文本",area是"区域" 属性: value:提交给服务器的值 rows="":指定文本区域的行数 cols="":指定文本区域的列数 readonly:只读 The above is the detailed content of Related tags in HTML body tag 2. For more information, please follow other related articles on the PHP Chinese website!
A tableis composed of each row
, each line is composed of .
So we have to remember that a table is composed of rows (rows are composed of columns), not rows and columns.
< table >Properties
< tr > row
A table is composed of rows and rows
Note: This is not to set the alignment of the content in the table. If you want to set the alignment of the content, you need to set the cell label < td > Set
Attribute
#align: Content horizontal alignment. The attribute value is: left right center
If you want to merge two or more cells, you must delete the remaining cells and leave only one cell
Attributes of the cell:
colspan: Horizontal merge. For example, colspan="2" means that the current cell will occupy two cell positions in the horizontal direction
< caption > 表格的标题。使用时和tr标签并列
表单标签 < form >
GET方式:
将表单数据,以"name=value"形式追加到action指定的处理程序的后面,两者间用"?"隔开,每一个表单的"name=value"间用"&"号隔开。
特点:只适合提交少量信息,并且不太安全(不要提交敏感数据)、提交的数据类型只限于ASCII字符。
将表单数据直接发送(隐藏)到action指定的处理程序。POST发送的数据不可见。Action指定的处理程序可以获取到表单数据。
特点:可以提交海量信息,相对来说安全一些,提交的数据格式是多样的(Word、Excel、rar、img)。
表单数据的编码方式(加密方式),取值可以是:application/x-www-form-urlencoded、multipart/form-data。Enctype只能在POST方式下使用。
< input > 输入标签(文本框)
< select > 下拉列表选项
"选项"
< textarea > 多行文本输入框