當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML pattern屬性用法及代碼示例


此屬性用於指定在其上檢查輸入元素值的正則表達式。此屬性適用於以下輸入類型:文本,密碼,日期,搜索,電子郵件等。使用“全局標題”屬性來描述用於幫助用戶的模式。

用法:

<input pattern = "regular_exp">

元素:此屬性僅與<input>元素關聯。

屬性:此屬性指定正則表達式。

例:



<!DOCTYPE html> 
<html> 
    <head> 
        <title>pattern attribute</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>pattern attribute</h2> 
        <form action="#"> 
            Password:<input type="text" name="Password"
            pattern="[A-Za-z]{3}" title="3 letter Password"> 
        <input type="submit"> 
        </form> 
    </body> 
</html>                    

輸出:

支持的瀏覽器:pattern屬性支持的瀏覽器如下:

  • Google Chrome 5.0及更高版本
  • Internet Explorer 10.0及更高版本
  • Firefox 4.0及更高版本
  • Opera 9.6及以上

相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | pattern Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。