input表单type属性值

<!-- input表单type属性值: -->

<!-- type = "email" 限制用户输入必须为Email类型 -->

email<input type="email">

<!-- type="url" 限制用户输入必须为URL类型 -->

url<input type="url">

<!-- type="date" 限制用户输入必须为日期类型 -->

date<input type="date">

<!-- type="datetime" 显示完整日期 含时区 -->

datetime<input type="datetime">

<!-- type="datetime-local" 显示完整日期 不含时区 -->

datetime-local<input type="datetime-local">

<!-- type="time" 限制用户输入必须为时间类型 -->

time<input type="time">

<!-- type="month" 限制用户输入必须为月类型 -->

month<input type="month">

<!-- type="week" 限制用户输入必须为周类型 -->

week<input type="week">

<!-- type="number" 限制用户输入必须为数字类型 -->

number<input type="number">

<!-- type="range" 生成一个滑动条  -->

range<input type="range">

<!-- type="search" 具有搜索意义的表单results="n"属性 -->

search<input type="search">

<!-- type="color" 生成一个颜色选择表单 -->

color<input type="color">

原文地址:https://www.cnblogs.com/jsxyz/p/10334244.html

时间: 2024-11-03 01:16:47

input表单type属性值的相关文章

JavaWeb后台从input表单获取文本值的两种方式

JavaWeb后台从input表单获取文本值的两种方式 #### index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <input type="text" name="n

表单部分属性值

这里面包括做一切选择框的属性. 表单标签: <form action="表单信息提交的地址”  method="提交方式"> 表单元素: <input type="元素类型" name="自定义">   元素类型:   文本框:text   密码框:password   按钮:   1.提交按钮:submit   2.普通按钮:button   3.重置按钮:reset      单选按钮:radio 注意:需要

兼容IE8以下浏览器input表单属性placeholder不能智能提示功能,以及使用jquery.validate.js表单验证插件的问题处理

当前很多表单提示使用了表单属性placeholder,可这属性不兼容IE8以下的浏览器,我自己写了一个兼容处理js // 兼容IE8以下浏览器input不能智能提示功能 if(navigator.appName == "Microsoft Internet Explorer" && (navigator.appVersion.match(/7./i)=="7." || navigator.appVersion.match(/8./i)=="

不通过getElementByName实现获取表单数据 (document.form表单的name值.input输入框的name值)

function update() { //document.form表单的name值.input输入框的name值 var username = document.form1.username; var mobile = document.form1.mobile; var qq = document.form1.qq; } <form name="form1" method="post" action=""> <table

jQuery如何获取指定type属性值的input元素

jQuery遍历input文本框并获取input的name属性值:因为input标签的type属性是多种多样的,例如text.radio.checkbox等,但是实际应用中往往需要获取某一类属性值的input元素,下面就通过实例简单介绍一下.代码实例如下: $("input:text", document.forms[0]).each(function(){alert(this.name)}); 以上代码可以获取type属性值为text的input元素,并且遍历弹出它们的name属性值

表单的属性和方法, 获取表单和表单的元素, 验证表单

表单的属性和方法 一. 表单字段的属性(id/name/value/form),这里用value属性来举例 上面的form属性代表获取表单字段的父级表单对象 1. 属性的获取         console.log(document.myform.username.value); 2. 属性的设置            document.myform.username.value="123"; 3. 获取表单字段的父级表单对象 console.log(document.myform.u

SpringMVC&lt;from:form&gt;表单标签和&lt;input&gt;表单标签简介 转http://blog.csdn.net/hp_yangpeng/article/details/51906654

SpringMVC<from:form>表单标签和<input>表单标签简介 在使用SpringMVC的时候我们可以使用spring封装的一系列表单标签,这些标签都可以访问到ModelMap中的内容.下面将对这些标签一一介绍. 在正式介绍SpringMVC的表单标签之前,我们需要先在JSP中声明使用的标签,具体做法是在JSP文件的顶部加入以下指令: Jsp代码 <%@taglib uri="http://www.springframework.org/tags/fo

input表单只允许输入大于0的整数

1.<input type="tel" name="num"  maxlength="5" onkeyup="carNum($(this))"/> type="tel"表示是输入类型用于应该包含电话号码的输入字段,是html5的input属性 maxlength:表示input表单输入的个数最多是5位,不能超过5位数 2.input表单只允许输入大于0的整数 /********input表单只允

HTML5(二)——特殊符号、新增属性、表单重写属性、

一.HTML5 特殊符号 &nbsp :空格 &gt:大于号 > &It :小于号 < &quot :引号" &copy:"版权符号 @ 二.HTML 新增属性 1.contentEditable 规定是否可编辑元素的内容属性值:true -----可以编辑元素的内容false -----无法编辑元素的内容inherit -----继承父元素的contenteditable属性当为空字符串时,效果和true一致.当一个元素的conte