标签:不同 nbsp image 数据 pos input 下拉列表 log ado
<form action="aa.html" method="post/get">
/*action的作用是提交到..,methed是提交方法,用post地址不显示页面中表单name内容,用get地址显示提交的name的内容*/
属性
/*除了按钮之外必须要写name属性*/
/*按钮类的表单必须要写value*/
disabled="disabled" 不可用,也不提交;
hidden="hidden" 隐藏
readonly="readonly" 表示只读,不可写;
checked="checked" 用在单选复选里,表示默认选中;
selected="selected" 用在下拉列表,表示默认选中;
/*文本框*/
文本框<input type="text" name="yhm" value="hello"/><br /> 密码<input type="password" name="mm" value="123"/><br /> 隐藏域<input type="hidden" name="yc" value="qq"/><br /> 文本域<textarea cols="30" rows="9"></textarea>/*30个字符,9行*/<br />
/*按钮类*/
提交按钮<input type="submit" value="提交"/><br />/*提交按钮,按钮会提交当前页面所有数据,有限提交表单中的value,如果没有,则提交标签后的文字,提交到aa.html,用post的方法提交*/ 重置按钮<input type="reset" value="重置"/><br />/*把当前页面重置*/ 图片按钮<input type="image" src="psb.jpg" width="60" height="60" value="tupian"><br />/*也属于提交按钮,可以把当前页面提交到aa。html*/ 普通按钮<input type="button" value="普通"><br>
/*选择类*/
单选<input type="radio" name="sex"/>男<br /> <input type="radio" name="sex"/>女<br />/*name值相同是相同,不同是多选*/ 复选<input type="checkbox" name="aihao"/>音乐<br /> <input type="checkbox" name="aihao"/>体育<br /> <input type="checkbox" name="aihao"/>学习<br /> 选择<select name="民族" size="1" > <option value="001">汉族</option><br /> <option value="002">朝鲜族</option><br /> <option value="003">满族</option><br /> </select>
文件
<input type="file"/>
标签:不同 nbsp image 数据 pos input 下拉列表 log ado
原文地址:http://www.cnblogs.com/xingyue1988/p/6012622.html