1 input系列标签的基本介绍
使用场景:在网页中显示收集用户信息的表单效果,如登录页面、注册页面
代码:
<input type=”text” name=”” id=””>
属性值:
例题:
文本框:
<input type="text" name="" id="">
<br> 密码框:
<input type="password" name="" id="" placeholder="请输入密码">
<br> 单选框:
<input type="radio" name="" id="">
<br> 多选框:
<input type="checkbox" name="" id="">
<input type="checkbox" name="" id="">
<input type="checkbox" name="" id="">
<br> 文件选择:
<input type="file" name="" id="">
<br> 提交按钮:
<input type="submit" name="" id="">
<br> 重置按钮:
<input type="reset" name="" id="">
<br> 普通按钮:
<input type="button" name="" id="">
效果图:
1-1 单选框radio
代码:
<input type=”radio” name=”” id=”” checked>
name 用于分组,有相同name属性值的单选框为一组,一组中同时只能有一个被选中
例题:
<p>单选框radio</p>
性别:
<input type="radio" name="sex" id="" checked>男
<input type="radio" name="sex" id="">女
效果图:
1-2 文件选择file
代码:
<input type=”file” name=”” id=”” multiple>
例题:
<p>文件选择</p>
<input type="file" name="" id="" multiple>
效果图:
1-3 提交按钮submit、重置按钮reset
属性值:
注意:
例题:
<p>表单1</p>
<form action="">
用户名:
<input type="text" name="" id="" placeholder="请输入用户名">
<br> 密码:
<input type="password" name="" id="" placeholder="请输入密码">
<br>
<input type="submit" name="" id="">
<input type="reset" name="" id="">
</form>
效果图:
2 button按钮标签
代码:
属性值:
注意:
2 button标签是双标签,要便于包裹其他内容,比如文字、图片等
例题:
<p>button按钮</p>
<button type="submit">提交</button>
<button type="reset">重置</button>
<button type="button">普通按钮,默认无功能,之后配合js添加功能</button>
效果图:
3 select下拉菜单标签
代码:
<select name=”” id=””>
<option value=”” selected>选项</option>
</select>
例题:
<p>select下拉菜单</p>
<select name="" id="">
<option value="" selected>北京</option>
<option value="">上海</option>
<option value="">广州</option>
<option value="">深圳</option>
</select>
效果图:
4 textarea文本域标签
代码:
<textarea name=”” id=”” cols=”30″ rows=”10″></textarea>
注意:
例题:
<p>textarea文本域</p>
<textarea name="" id="" cols="30" rows="10" placeholder="文本域的可见范围:10行30列"></textarea>
效果图:
5 label标签
代码:
使用方法一:
2 在表单标签上添加id属性
3 在label标签的for属性值等于表单中的id属性值
使用方法二:
例题:
<p>法一</p>
性别:
<input type="radio" name="sex" id="nan"><label for="nan">男</label>
<input type="radio" name="sex" id="nv"><label for="nv">女</label>
<p>法二</p>
<label><input type="radio" name="sex" id="">男</label>
<label><input type="radio" name="sex" id="">女</label>
效果图:
原文地址:https://blog.csdn.net/weixin_54021642/article/details/124386839
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_16435.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!