<html>
<body>
主页:<input type="url" id="myURL">
<p>单击该按钮可禁用 URL 字段。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>IE 9(及更早版本)或 Safari 不支持带有 type="url" 的元素。</p>
<script>
function myFunction() {
document.getElementById("myURL").disabled = true;
}
</script>
</body>
</html>