首页 > 代码库 > 140916●表单元素
140916●表单元素
表单元素:
<form id="" name="" method="post/get" action="负责处理的服务端"> id不可重复;name可重复;get提交有长度限制,并且编码后的内容在地址栏可见,post提交无长度限制,且编码后内容不可见。
</form>
文本框<input type="txt" name="" id="" value="" />
密码框<input type="password" name="" id="" value="" />
文本域<input type="txtarea" name="" id="" value="" />
隐藏域
提交按钮<input type="submit" value="">
重置按钮<input type="reset" value="">
普通按钮<input type="button" value="">
图片按钮<input type="img" src="http://www.mamicode.com/图片地址">
单选按钮组<input type="redio" name="用来分组" checked="checked" value="">
复选框组<input type="checkbox" name="用来分组" checked="checked" value="">
下拉列表框
<select name="" id="" size="" multiple="multiple"> --size=1时,为菜单;>1时,为列表。multiple为多选。
<option value="http://www.mamicode.com/值">内容1</option>
<option value="http://www.mamicode.com/值" selected="selected">内容2</option> --设为默认
<option value="http://www.mamicode.com/值">内容3</option>
</select>
文件上传<input type="file" name="" id="" >
框架集
<frameset rows="100,*" frameborder="no"> --rows换成cols,则上下分变为左右分
<frame src="" noresize="noresize"> --noresizehi禁止调整大小
<frame src="" scrolling="no"> --scrolling="no",取消显示滚动条
</frameset>
在超链接指定目标页面显示在哪个框架窗口中
第一步:给要显示内容的目标frame设置name属性
第二步:给超链接的target属性赋值成第一步设置的name
在原来页面嵌入小窗口显示其他页面
<iframe src="" width="" height="" frameborder="0" scrolling="no">
140916●表单元素