当前位置:Gxlcms > html代码 > html中input框的pattern属性解析

html中input框的pattern属性解析

时间:2021-07-01 10:21:17 帮助过:48人阅读

定义和用法

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属性解析的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行