以下是一些常见的 <input> 类型:
1. 文本框(Text Input):
<input type="text" name="username" placeholder="请输入用户名">
2. 密码框(Password Input):
<input type="password" name="password" placeholder="请输入密码">
3. 单选按钮(Radio Button):
<input type="radio" name="gender" value="male"> 男性
<input type="radio" name="gender" value="female"> 女性
4. 复选框(Checkbox):
<input type="checkbox" name="subscribe" checked> 订阅
5. 提交按钮(Submit Button):
<input type="submit" value="提交">
6. 重置按钮(Reset Button):
<input type="reset" value="重置">
7. 隐藏字段(Hidden Input):
<input type="hidden" name="user_id" value="123">
8. 文件上传字段(File Input):
<input type="file" name="file">
这只是 <input> 标签的一些常见用法。根据 type 属性的不同,<input> 可以创建多种形式的用户输入字段。在表单中,用户填写这些字段然后提交,提交的数据将被发送到服务器进行处理。
转载请注明出处:http://www.zyzy.cn/article/detail/3865/HTML