html中input框的pattern属性解析
程序员文章站
2022-03-31 12:17:47
...
定义和用法
pattern 属性规定用于验证输入字段的模式。
模式指的是正则表达式。您可以在我们的 JavaScript 教程中阅读到这方面的内容。
注释:pattern 属性适用于以下 <input> 类型:text, search, url, telephone, email 以及 password 。
提示:请使用标准的 "title" 属性来描述模式。
语法:
<input pattern="regexp">
例子:
<!DOCTYPE HTML> <html> <body> <form action="/example/html5/demo_form.asp" method="get">
国家代码:
<input type="text" name="country_code" pattern="[A-z]{3}" title="三个字母的国家代码" /> <input type="submit" /> </form> </body> </html>
以上就是html中input框的pattern属性解析的详细内容,更多请关注其它相关文章!
上一篇: CSS透明属性详解_html/css_WEB-ITnose
下一篇: Python with用法实例
推荐阅读
-
全面解析HTML5中的标准属性与自定义属性
-
HTML5中的强制下载属性download使用实例解析
-
全面解析HTML5中的标准属性与自定义属性
-
html中的input标签的checked属性jquery判断代码
-
HTML5中的强制下载属性download使用实例解析
-
HTML5中input输入框默认提示文字向左向右移动的示例代码
-
html中的input标签的checked属性jquery判断代码_jquery
-
input输入框的border-radius属性在IE8下的完美兼容_html/css_WEB-ITnose
-
input输入框的border-radius属性在IE8下的完美兼容_html/css_WEB-ITnose
-
html中的input标签的checked属性jquery判断代码_jquery