<!DOCTYPE html>
<html>
<body>
<form action="/demo/htmldom/action_page.php">
脸书简介:<input type="url" id="myURL" name="fb">
<input type="submit">
</form>
<p>单击“试一试”按钮可指定将检查 URL 字段值的正则表达式。请注意,我们还设置了“标题”来描述模式。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>IE 9(及更早版本)或 Safari 不支持带有 type="url" 的元素。</p>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("myURL").pattern =
"http://www\.w3vip\.cn\/(.+)|https://www\.w3vip\.cn\/(.+)";
document.getElementById("myURL").title =
"网址必须以 http://www.w3vip.cn/ 或 https://www.w3vip.cn/ 开头";
document.getElementById("demo").innerHTML =
"URL 字段现在只接受以 http://www.w3vip.cn/ 或 https://www.w3vip.cn/ 开头的 URL。";
}
</script>
</body>
</html>