其他分享
首页 > 其他分享> > html基础2

html基础2

作者:互联网

form表单私有属性:
action:传输数据的路径
method:传输的方式
post传输方式
get传输方式
enctype:在将数据传输到服务器之前对数据进行编码
select:下拉列表
eg:
<select name="" id=""> <option value="">苹果</option> <option value="">香蕉</option> <option value="">葡萄</option> </select>
input标签
type类型:password(密码)
checkbox(复选框)
text(默认)
radio(单选)
submit(提交)
reset(重置)
color(颜色)
button(按钮)
data(日期)
number(数字)
file(选择文件)

			eg:
					<input type="submit" value="提交"/>
					多选<input type="checkbox" value=""/>
						默认选中:checked
					多选<input type="checkbox" checked value=""/>
					单选<input type="radio" name="danxuan">
					单选<input type="radio" name="danxuan">
					文本框:<input type="text" value=""/>
					重置:<input type="reset" value="重置"/>
					密码框:<input type="password" value=""/>
					颜色:<input type="color">
					日期:<input type="date">
					数字输入框:<input type="number"> 
					普通按钮:<input type="button" value="按钮">
					选择文件:<input type="file">
					属性:
						placeholder(提示文字)
						disabled(禁止使用)
						maxlength(限制输入长度)

标签:重置,多选,eg,传输方式,基础,html,单选,按钮
来源: https://blog.csdn.net/weixin_45581741/article/details/100153805