HTML DOM中的DOM輸入URL模式屬性用於設置或返回URL字段的模式屬性。它用於指定檢查輸入元素值的正則表達式。使用全局標題屬性來描述幫助用戶的模式。
用法:
- 它返回Input url pattern屬性。
urlObject.pattern
- 用於設置輸入網址格式屬性。
urlObject.pattern = regexp
屬性值:它包含單個值regexp,用於指定要檢查URL字段值的正則表達式。
返回值:它返回一個字符串值,該字符串值表示要檢查URL字段值的正則表達式。
示例1:本示例說明了如何返回輸入URL模式屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input URL pattern Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input URL pattern Property
</h2>
<label for="uname"
style="color:green">
<b>Enter URL</b>
</label>
<input type="url"
id="gfg"
placeholder="Enter URL"
size="20"
pattern="https?://.+"
title="Include http://">
<br>
<br>
<button type="button"
onclick="geeks()">
Click
</button>
<p id="GFG"
style="color:green;
font-size:25px;">
</p>
<script>
function geeks() {
var link =
document.getElementById(
"gfg").pattern;
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何設置屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input URL pattern Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input URL pattern Property
</h2>
<label for="uname"
style="color:green">
<b>Enter URL</b>
</label>
<input type="url"
id="gfg"
placeholder="Enter URL"
size="20"
pattern="https?://.+"
title="Include http://">
<br>
<br>
<button type="button"
onclick="geeks()">
Click
</button>
<p id="GFG"
style="color:green;
font-size:25px;">
</p>
<script>
function geeks() {
var link =
document.getElementById(
"gfg").pattern =
"URL must start with " +
"http://www.facebook.com/";
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
輸出:
單擊按鈕之前::
單擊按鈕後:
支持的瀏覽器:DOM輸入URL模式屬性支持的瀏覽器如下:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相關用法
- HTML Input Search pattern用法及代碼示例
- HTML Input Text pattern用法及代碼示例
- HTML Input Email pattern用法及代碼示例
- HTML Input Password pattern用法及代碼示例
- HTML <input> pattern屬性用法及代碼示例
- HTML Input URL value用法及代碼示例
- HTML Input URL name用法及代碼示例
- HTML Input URL type用法及代碼示例
- HTML Input URL placeholder用法及代碼示例
- HTML Input URL required用法及代碼示例
- HTML Input Datetime value用法及代碼示例
- HTML Input Datetime max用法及代碼示例
- HTML Input Email value用法及代碼示例
- HTML Input Color value用法及代碼示例
- HTML Input Hidden name用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input URL pattern Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。