时间:2021-07-01 10:21:17 帮助过:29人阅读
表单提交:
<form action="提交地址"method="提交方法"></form> methad有两种提交方式get(不太安全)和post(安全)
文本框:
<form> 属性值:name=(名称) size=(输入框中显示可见的字符也就是最多能看见几个字符)
<input type="text" size=""> value=(文本框中预设内容) align=(对齐方式【只对image有用】)
</form> maxlength=(文本框中最多可输入多少个字符) text=(明文显示)
密码框: 属性值:password=(秘文显示)
<input type="password">
单选:
<input type="radio" name=""> 注意:单选只有两个名称一样的时候时候才会单选其中一个,否则没用。
属性值:checked="checked" 默认(想让哪个默认加《checked》就会先选中哪个)
复选: 属性值:checkbox=(复选)
<input type="checkbox" name="">
上传按钮: 属性值:file=(上传按钮)
<input type="file">
重置 属性值:reste=(重置)
<input type="reste" value="重置">
提交 属性值:submit=(提交)
<input type="submit" value="提交">
普通按钮(自定义按钮) 属性值: button=(普通按钮,自定义按钮)
<input type="button" value="按钮">
图像按钮 属性值;image=(图片按钮)
<input type="image" src="图片路径">
文本域: 属性值:cols=(宽) rows=(高)
<textarea cols="数字" rows="数字">请输入文字</textarea> rows=(高)
下拉列表框:
<select> selected=默认选中
<option></option>
</select>
<html> <head> <title>表单</title> </head> <body> <form> <input type="text"> <input type="radio" name="sex">男<input type="radio" name="sex">女 <select> <option>下拉1</option> <option>下拉2</option> <option>下拉3</option> <option>下拉4</option> </select> </form> </body> </html>
以上就是html基础之from表单的实例教程的详细内容,更多请关注Gxl网其它相关文章!