5.9 HTML5 新增表单控件 ---不是特别重要

HTML5 新增表单控件
新增类型:网址 邮箱 日期 时间 星期 数量 范围 电话 颜色 搜索
这些控件基本不使用:因为在不同的浏览器中效果不一样。产品设计中不允许多个浏览器效果不同,必须统一。

复制代码
<label>网址:</label><input type="url" name="" required><br><br>
<label>邮箱:</label><input type="email" name="" required><br><br>
<label>日期:</label><input type="date" name=""><br><br>
<label>时间:</label><input type="time" name=""><br><br>
<label>星期:</label><input type="week" name=""><br><br>
<label>数量:</label><input type="number" name=""> <br><br>
<label>范围:</label><input type="range" name=""><br><br>
<label>电话:</label><input type="tel" name=""><br><br>
<label>颜色:</label><input type="color" name=""><br><br>
<label>搜索:</label><input type="search" name=""><br><br>
复制代码

新增常用表单控件属性:(这个还是比较常用的)
1、placeholder 设置文本框默认提示文字
2、autofocus 自动获得焦点  autofocus="autofocus"   可以简写为autofocus
3、autocomplete 联想关键词, 一般设置为"off", 将它关掉, 然后自定义联想词语下拉菜单
 <input type="text" placeholder="请输入用户名" autofocus autocomplete="off">

 



posted @   LiuYanYGZ  阅读(224)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
历史上的今天:
2019-02-23 对称加密和分组加密中的四种模式(ECB、CBC、CFB、OFB)
点击右上角即可分享
微信分享提示