更新时间:2023-09-28 09:20:50
你们好,最近小艾特发现有诸多的小伙伴们对于html表单元素有哪些,html表单这个问题都颇为感兴趣的,今天小活为大家梳理了下,一起往下看看吧。
1、 form./form
2、 属性属性值
3、 名称字符串(字符串,给这个表单一个名称)
4、 方法get/post(表单的传输模式)
5、 操作url(路径、传输目的地)
6、 input type='text'
7、 input type='password'
8、 input type='hidden'
9、 Name='字段名'
10、 值=“字段中的固定值”
11、 Size='字段显示宽度'
12、 Maxlength='字段数据输入的最大长度'
13、 Placeholder=' Invisible Word'
14、 readonly='readonly '(只读,禁止写)
15、 disabled='disabled '(禁用)
16、 Input type="check box"
17、 input type='radio'
18、 Name="字段名"
19、 Value="默认值"
20、 checked="checked "(默认选择)
21、 disabled="disabled "(禁止选择)
22、 Select name="字段名" size="数字"
23、 Option value=' option value selected='selected' (default selection)
24、 Option value=' option value'
25、 Option value=' option value'
26、 /select
27、 Textarea cols="Set length" Line number="Set height" /textarea
28、 Input type='image' src='url (path)' alt=' text'/
29、 button
30、 img src="URL(路径)"
31、 /button
32、 Input type="submit" value="按钮中显示的文本"
33、 button type='submit'./button
34、 Input type="reset" value="按钮中显示的文本"
35、 button type='reset'./button
36、 Input type="button" value="按钮中显示的文本"
37、 button type='button'./button
38、 input type='file' name='file'
39、 如果定义了上传框,则表单必须定义enctype="multipart/form-data ",否则上传的图片信息将不被接受。
40、 fieldset./fieldset
41、 legend./legend
以上就是html表单这篇文章的一些介绍,希望对大家有所帮助。