HTML 参考手册
HTML <input> pattern 属性
只能包含三个字母的输入字段(不允许数字或特殊字符)
源代码:
点击运行 »
<form action="demo_form.html"> Country code: <input type="text" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code"> <input type="submit"> </form>
运行结果:
点击运行 »