hreflang

收藏:0   阅读:25

Anchor href 属性


定义和用法

href 属性可设置或返回链接中 href 属性的值。

href 属性指定了被链资源的 URL。

语法

设置 href 属性:

anchorObject.href="URL"

返回 href 属性:

anchorObject.href

描述
URL 被链资源的 URL


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 href 属性


实例

返回链接中 href 属性的值:

<html>
<body>

<p><a id="w3s" href="http://www.bubuko.com/">bubuko.com</a></p>

<script>
document.write(document.getElementById("w3s").href);
</script>

</body>
</html>

以上实例输出结果:

http://www.bubuko.com/

© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!