HTML
HTML5 表单属性
下面的例子显示了一个只能包含三个字母的文本域(不含数字及特殊字符)
源代码:
点击运行 »
Country code: <input type="text" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code">
运行结果:
点击运行 »