分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 技术分享

(总结1)HTML5中新增加的表单元素

发布时间:2023-09-06 01:39责任编辑:沈小雨关键词:HTML

HTML5中新增加了很多元素标签使用,在经过了近一星期多的学习之后现在进行一下总结,方便日后查阅:

  • H5中的智能表单
 1 ????<form action=""> 2 ????????<fieldset> 3 ????????????<legend>Html5中的智能表单</legend> 4 ????????????<label for="email"> 5 ????????????????email:<input type="email" name="email" id="email"/> 6 ????????????</label> 7 ????????????<label for="tel"> 8 ????????????????tel:<input type="tel" name="tel" id="tel"/> 9 ????????????</label>10 ????????????<label for="url">11 ????????????????url:<input type="url" name="" id="url"/>12 ????????????</label>13 ????????????<label for="number">14 ????????????????number:<input type="number" name="" id="number" step="3"/>15 ????????????</label>16 ????????????<label for="search">17 ????????????????search:<input type="search" name="" id="search"/>18 ????????????</label>19 ????????????<label for="range">20 ????????????????range:<input type="range" name="" id="range" value="60" min="0" max="100"/>21 ????????????</label>22 ????????????<label for="color">23 ????????????????color:<input type="color" name="" id="color"/>24 ????????????</label>25 ????????????<label for="time">26 ????????????????time:<input type="time" name="" id="time"/>27 ????????????</label>28 ????????????<label for="date">29 ????????????????date:<input type="date" name="" id="date"/>30 ????????????</label>31 ????????????<label for="month">32 ????????????????month:<input type="month" name="" id="month"/>33 ????????????</label>34 ????????????<label for="week">35 ????????????????week:<input type="week" name="" id="week"/>36 ????????????</label>37 ????????????<input type="submit" value="提交"/>38 ????????</fieldset>39 ????</form>
  • 以及智能下拉菜单,和传统下拉标签进行一个对比
 ???<!--传统表单--> ???<select> ???????<option>选项1</option> ???????<option>选项1</option> ???????<option>选项1</option> ???????<option>选项1</option> ???</select> ???<br/><br/><br/> ???<!--h5新增表单--> ???车:<input type="text" list="car"/> ???<datalist id="car"> ???????<option>奔驰</option> ???????<option>奔奔</option> ???????<option>宝马</option> ???????<option>宝俊</option> ???????<option>保时捷</option> ???????<option>奥迪</option> ???????<option>奥拓</option> ???</datalist>
  •  表单元素
<form action=""> ???????<fieldset> ???????????<legend>表单元素</legend> ???????????<label> ???????????????output标签仅做展示用:<output>我是output</output> ???????????</label> ???????????<label> ???????????????加密类型:<keygen/> ???????????</label> ???????????<label> ???????????????度量器:<meter value="30" min="0" max="100"></meter> ???????????</label> ???????????<label> ???????????????进度条:<progress></progress> ???????????????<!--进度条:<progress ?value="30" min="0" max="100"></progress> --> ???????????</label> ???????</fieldset> ???</form>
  • 表单属性
1 ????autofocus:自动获取焦点2 ????autocomplete:自动补全(默认on开启) off关闭3 ????placeholder:占位符4 ????required:必填选项5 ????multiple:可多选(上传文件)6 ????novalidate:关闭默认的验证功能(form标签属性)7 ????pattern="1\d{10}" 自定义正则表达式
  • 表单事件
 ???<script> ???????var txt1 = document.getElementsByTagName("input")[0]; ???????var txt2 = document.getElementsByTagName("input")[1]; ???????var txt3 = document.getElementsByTagName("input")[2]; ???????var num = 1; ???????//oninput 当用户每一次输入的时候 ???????txt1.oninput = function () { ???????????txt2.value = num++; ???????} ???????//oninvalid 当验证不通过时触发 ???????txt3.oninvalid = function () { ???????????//setCustomValidity:验证不通过时提示的文字 ???????????this.setCustomValidity("不要顽皮!请正确输入") ???????} ???</script>

(总结1)HTML5中新增加的表单元素

原文地址:https://www.cnblogs.com/powerplay/p/8371045.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved