首页 > 代码库 > 网页表单
网页表单
form 是网页表单编辑标签,属性主要是method=post/get post 为无长度限制,内容不可见,get为有长度限制,内容在地址栏可见。action=负责处理的服务终端。
form 包含标签主要有:
文本框:<input type="text" name="uname" maxlength="3" placeholder="请输入用户名"/><br />
<input type="text" name="nname" value="http://www.mamicode.com/用户名" /><br />
密码框:<input type="password" name="pwd" /><br />
下拉列表:<select name="s1" size="5" style="width: 200px;" multiple="multiple">multiple多项选择
下拉表单 <option>1</option>
<option selected="selected">2</option>selected为默认选择
<option>3</option>
</select>
复选框:<input type="checkbox" checked="checked" name="c1" /><br />
单选框:<input type="radio" checked="checked" name="r1" /><br />
<input type="radio" name="r1" /><br />
注册按钮<input type="submit" value="http://www.mamicode.com/注册" /><br />
文本域:<textarea name="t1"></textarea><br />
隐藏域:<input type="hidden" name="11" /><br />
重置按钮:<input type="reset" value="http://www.mamicode.com/重置" /><br />
普通按钮:<input type="button" value="http://www.mamicode.com/按钮" /><br />
图片按钮:<input type="image" src="http://www.mamicode.com/img/t010bf2fad41ee7797e.jpg" /><br />
文件上传:<input type="file" name="file" />
网页表单