Anchor href 屬性
Anchor對(duì)象定義和用法
href 屬性可設(shè)置或返回鏈接中 href 屬性的值。
href 屬性指定了被鏈資源的 URL。
語(yǔ)法
設(shè)置 href 屬性:
anchorObject.href="URL"
返回 href 屬性:
anchorObject.href
值 | 描述 |
---|---|
URL | 被鏈資源的 URL |
瀏覽器支持
所有主要瀏覽器都支持 href 屬性
實(shí)例
實(shí)例
返回鏈接中 href 屬性的值:
<html>
<body>
<p><a id="w3s"href="//o2fo.com/">W3Cschools.com</a></p>
<script>
document.write(document.getElementById("w3s").href);
</script>
</body>
</html>
<body>
<p><a id="w3s"href="//o2fo.com/">W3Cschools.com</a></p>
<script>
document.write(document.getElementById("w3s").href);
</script>
</body>
</html>
以上實(shí)例輸出結(jié)果:
//o2fo.com/
嘗試一下 ?
Anchor對(duì)象
更多建議: