html中input框的pattern屬性解析
發(fā)表時間:2024-05-10 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]定義和用法pattern 屬性規(guī)定用于驗證輸入字段的模式。模式指的是正則表達式。您可以在我們的 JavaScript 教程中閱讀到這方面的內(nèi)容。注釋:pattern 屬性適用于以下 <input> 類型:text, search, url, telephone, email 以及 pa...
定義和用法
pattern 屬性規(guī)定用于驗證輸入字段的模式。
模式指的是正則表達式。您可以在我們的 JavaScript 教程中閱讀到這方面的內(nèi)容。
注釋: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屬性解析的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學科中所使用的生產(chǎn)和維護的網(wǎng)站。