Body link 属性
定义和用法
link 属性可设置或者返回 body 元素的 link属性值。
link 属性指定了文档中链接未被点击访问的颜色。
语法
设置 link 属性:
返回 link 属性:
浏览器支持
所有主要浏览器都支持 link 属性
实例
返回文档中未被点击链接,点击链接,点击访问后的链接颜色:
<html>
<body id="w3s" link="blue" alink="green" vlink="red">
<p><a href="http://www.bubuko.com">bubuko.com</a></p>
<p><a href="http://www.bubuko.com/html/">HTML Tutorial</a></p>
<script>
document.write("Link color is: ")
document.write(document.getElementById("w3s").link);
document.write("<br>Active link color is: ")
document.write(document.getElementById("w3s").aLink);
document.write("<br>Visited link color is: ")
document.write(document.getElementById("w3s").vLink);
</script>
</body>
</html>