嵌套页面
<iframe src="http://www.baidu.comt" width = "100%" hight = "50%">
src = 如果有 http:// 则访问外网
如果没有 则访问本身项目的
外联有四个属性 _blam
输入框
表单控件
<input type="text" width ="200px"/> 输入框
<input type="password" width ="200px"/> 密码框
<input type="checkbox" /> 多选框
<input type="radio" /> 单选框
<input type="radio" name= "sex"/>男<br>
<input type="radio" name= "sex"/>女<br>
<input type="reset" name= "sex"/><br> 重置按钮
<input type="submit" /><br> 提交
<input type="button" value ="登陆"/> 提交按钮
<input type="file" /> 上传附件
下拉框选择
<select>
<option>北京</option>
<option>上海</option>
</select>
网友评论