pattern 屬性規定用於驗證輸入欄位的模式。
模式指的是正規表示式。您可以在我們的 JavaScript 教學中閱讀到這方面的內容。
註解:pattern 屬性適用於以下 d5fd7aea971a85678ba271703566ebfd 類型: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屬性解析的詳細內容。更多資訊請關注PHP中文網其他相關文章!