input的pattern属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input的pattern属性相关的知识,希望对你有一定的参考价值。

<input> pattern 属性


定义和用法

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>


本文出自 “12897581” 博客,请务必保留此出处http://12907581.blog.51cto.com/12897581/1967754

以上是关于input的pattern属性的主要内容,如果未能解决你的问题,请参考以下文章

H5新增input属性

input 手机数字键盘

URLDecoder: Illegal hex characters in escape (%) pattern - For input string

input pattern='[a-zA-Z]' 在 React 应用程序中不起作用

为什么这两个java.util.Pattern不相等

[leetcode]290.Word Pattern