当前位置: 首页 > news >正文

QD1-P14 HTML常用标签:input输入标签

本节学习 HTML 常用标签:input 输入标签


本节视频

www.bilibili.com/video/BV1n64y1U7oj?p=14


知识点 1:简单示例

HTML

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>P14-input标签</title></head><body>文本框:<input type="text"></body>
</html>

预览

recording


知识点 2:设置默认文本

value 属性设置一段默认的文本

文本框:<input type="text" value="请在此输入">

预设的文本将出现在 input 的输入框中,可以继续删除和编辑。

Clip_2024-10-10_23-46-53


知识点 3:设置只读状态

readonly 属性设置只读状态,使用户无法修改文本框中的内容。

文本框1:<input type="text" value="请在此输入" /><br />
文本框2:<input type="text" value="只读状态" readonly="readonly" />

recording


知识点 4:设置文本长度

maxlength 属性设置允许输入的文本长度。

文本框:<input type="text" maxlength="5" />

这个功能还是很实用的,比如某某网站用户注册的时候,限制用户名长度。


知识点 5:密码框

若要使用输入框,请这样设置 type 属性:

<input type="text" />

若要是使用密码框,请这样设置 type 属性:

<input type="password" />

input 标签的属性 type="text",为输入框。


模拟登录某某网站

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>P14-input标签</title></head><body><div align="center"><p>尊敬的超级无敌9999级VIP客户,欢迎登录xxx网站!</p>用户:<input type="text" value="请输入用户名" maxlength="16" /><br />密码:<input type="password" /><br /><button style="width:220px; margin-top: 5px;">登录</button></div></body>
</html>

效果

Clip_2024-10-11_00-22-49

输入用户名和密码。密码框的好处:防偷窥。

Clip_2024-10-11_00-24-00


知识点 6:单选框

若要是使用单选框,请设置 type 属性为 radio:

<input type="radio" value="beijin" name="server" /> 北京 
<input type="radio" value="shanghai"name="server" />上海 

单选框是使用 name 属性来分组的。


示例 进一步模拟登录界面

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>P14-input标签</title></head><body><!-- 模拟登录 --><div align="center"><p>尊敬的超级无敌9999级VIP客户,欢迎登录xxx网站!</p>用户:<input type="text" value="请输入用户名" maxlength="16" /><br />密码:<input type="password" /><br /><button style="width:220px; margin-top: 5px;">登录</button> <br /><p>服务器</p><input type="radio" value="beijin" name="server" /> 北京 <input type="radio" value="shanghai"name="server" />上海 <input type="radio" value="chengdu" name="server" />成都</div></body>
</html>

运行演示

recording


单选框需要注意的地方:

  • 多个单选框通过相同的name属性设置为一组

知识点7:复选框

复选框:type="checkbox"

HTML 整个好玩的

Clip_2024-10-11_03-49-19

完整HTML代码如下

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>P14-input标签</title></head><body><!-- 模拟登录 --><div align="center"><p>尊敬的幸运用户,欢迎登录穿越【登录系统】!</p><hr width="49%" /><p>请选择穿越世界类型!</p><input type="radio" value="s1" name="server" />古代<input type="radio" value="s2" name="server" />仙侠世界<input type="radio" value="s3" name="server" />赛博未来<br /><br><hr width="49%" /><p>请选择您的主角模板</p><input type="checkbox" value="1" name="test" />女主对你矢志不渝<br /><input type="checkbox" value="2" name="test" />少年天才一朝废物<br /><input type="checkbox" value="3" name="test" />三十年河东欺少年<br /><input type="checkbox" value="4" name="test" />掉落悬崖必有奇遇<br /><input type="checkbox" value="5" name="test" />最强攻击大嘴遁法<br /><input type="checkbox" value="6" name="test" />没脸没皮抄诗装逼<br /><hr width="49%" /><button style="width:220px; margin-top: 5px;color:yellow;background-color:goldenrod;">确认穿越</button> <br /></div></body>
</html>

知识点8:文件域

文件选择器:type="file"

<p>上传需要携带穿越的书籍</p>
<input type="file" /><br />

效果

recording

完整HTML代码

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>P14-input标签</title></head><body><!-- 模拟登录 --><div align="center"><p>尊敬的幸运用户,欢迎登录穿越【登录系统】!</p><hr width="49%" /><p>请选择穿越世界类型!</p><input type="radio" value="s1" name="server" />古代<input type="radio" value="s2" name="server" />仙侠世界<input type="radio" value="s3" name="server" />赛博未来<br /><br><hr width="49%" /><p>请选择您的主角模板</p><input type="checkbox" value="1" name="test" />女主对你矢志不渝<br /><input type="checkbox" value="2" name="test" />少年天才一朝废物<br /><input type="checkbox" value="3" name="test" />三十年河东欺少年<br /><input type="checkbox" value="4" name="test" />掉落悬崖必有奇遇<br /><input type="checkbox" value="5" name="test" />最强攻击大嘴遁法<br /><input type="checkbox" value="6" name="test" />没脸没皮抄诗装逼<br /><hr width="49%" /><p>上传需要携带穿越的书籍</p><input type="file" /><br /><hr width="49%" /><button style="width:220px; margin-top: 5px;color:yellow;background-color:goldenrod;">确认穿越</button> <br /></div></body>
</html>

知识点9:隐藏域

示例HTML

<input type="hidden" value="admin" /><br />

不知道有啥用,看不见这个元素。


知识点10:普通按钮和提交按钮

<input type="button" value="普通按钮" /><br />
<input type="submit" value="提交按钮" /><br />

外观看起来都一样

Clip_2024-10-11_04-09-23

不同之处在于,from标签中嵌套了提交按钮时,点击提交按钮会让上层的form表单执行提交。、

示例HTML

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>P14-input标签</title></head><body><!-- 模拟登录 --><form action="http://www.baidu.com"><div align="center"><p>尊敬的幸运用户,欢迎登录穿越【登录系统】!</p><hr width="49%" /><p>请选择穿越世界类型!</p><input type="radio" value="s1" name="server" />古代<input type="radio" value="s2" name="server" />仙侠世界<input type="radio" value="s3" name="server" />赛博未来<br /><br><hr width="49%" /><p>请选择您的主角模板</p><input type="checkbox" value="1" name="test" />女主对你矢志不渝<br /><input type="checkbox" value="2" name="test" />少年天才一朝废物<br /><input type="checkbox" value="3" name="test" />三十年河东欺少年<br /><input type="checkbox" value="4" name="test" />掉落悬崖必有奇遇<br /><input type="checkbox" value="5" name="test" />最强攻击大嘴遁法<br /><input type="checkbox" value="6" name="test" />没脸没皮抄诗装逼<br /><hr width="49%" /><p>上传需要携带穿越的书籍</p><!-- 			<input type="button" value="普通按钮" /><br /><input type="submit" value="提交按钮" /><br /> --><hr width="49%" /><input type="submit" value="确认穿越"style="width:220px; margin-top: 5px;color:yellow;background-color:goldenrod;" /></div></form></body>
</html>

效果

recording


知识点10:重置按钮

效果 (黑屏时录制软件的原因,实际是没有的)

recording

实现

<input type="reset" value="重置按钮" />

知识点10:日期框

效果

recording

实现

<p>选择穿越日期</p>
<input type="date"></input>

知识点11:disable属性

设置disabled命令让元素暂时不可用,比如重置按钮

Clip_2024-10-11_04-38-16

按钮编程了灰色,且无法点击。


知识点12:name属性

没有form标签没有name属性时,是无法提交的。


over

本节完整HTML代码,你可以是在自己的电脑上实践一下

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>P14-input标签</title></head><body><!-- 模拟登录 --><form action="http://www.baidu.com"><div align="center"><p>尊敬的幸运用户,欢迎登录穿越【登录系统】!</p><hr width="49%" /><p>请选择穿越世界类型!</p><input type="radio" value="s1" name="server" />古代<input type="radio" value="s2" name="server" />仙侠世界<input type="radio" value="s3" name="server" />赛博未来<br /><br><hr width="49%" /><p>请选择您的主角模板</p><input type="checkbox" value="1" name="test" />女主对你矢志不渝<br /><input type="checkbox" value="2" name="test" />少年天才一朝废物<br /><input type="checkbox" value="3" name="test" />三十年河东欺少年<br /><input type="checkbox" value="4" name="test" />掉落悬崖必有奇遇<br /><input type="checkbox" value="5" name="test" />最强攻击大嘴遁法<br /><input type="checkbox" value="6" name="test" />没脸没皮抄诗装逼<br /><hr width="49%" /><p>上传需要携带穿越的书籍</p><!-- 			<input type="button" value="普通按钮" /><br /><input type="submit" value="提交按钮" /><br /> --><hr /><p>选择穿越日期</p><input type="date"></input><hr width="49%" /><input type="submit" value="确认穿越"style="width:220px; margin-top: 5px;color:yellow;background-color:goldenrod;" /><input type="reset" value="重置按钮" disabled="disabled"/><br /></div></form></body>
</html>

http://www.mrgr.cn/news/47576.html

相关文章:

  • flink的EventTime和Watermark
  • 【含开题报告+文档+PPT+源码】基于SpringBoot+Vue的猫咪商城管理系统
  • Node.js——fs(文件系统)模块
  • 【redis初阶】初识Redis
  • Linux (CentOS) 安装 Docker 和 Docker Compose
  • Qt重写webrtc的demo peerconnection
  • MySQL--事务(详解)
  • PGMP-00基础单词(1-25)
  • 数学基础 -- 三角函数极限之小数场景
  • 【.NET 8 实战--孢子记账--从单体到微服务】--角色(增加/删除/修改/查询)
  • React技术在Meta Connect 2024大会
  • LeetCode15.三数之和
  • 【cpp】 lambda 表达式常用笔记
  • ViT模型技术学习
  • 【部署篇】Redis-02单机部署
  • (27)QPSK信号在非相关平坦莱斯(Rician)衰落信道上的误码率性能MATLAB仿真
  • 点进HTML初步了解
  • JAVA开发中的常用通讯协议
  • Linux !ko/5.17-BBRplus AMD64(X86_64)内核致命的 futex_wait 函数死锁问题。
  • 力扣 前缀和
  • Java中的拦截器、过滤器及监听器
  • tcpdump深入浅出
  • C++从入门到起飞之——(multi)set与(multi)map的的使用 全方位剖析!
  • 6. 继承、重写、super、final
  • 算法: 前缀和题目练习
  • Corel VideoStudio Ultimate 会声会影2025旗舰版震憾来袭,会声会影2025旗舰版最低系统要求