Body link 属性
Body 对象的 link 属性用于设置或者返回 <body> 元素的 link 属性值
link 属性指定了文档中链接未被点击访问的颜色
语法
设置 link 属性
bodyObject.link="color"
返回 link 属性
bodyObject.link
值说明
值 | 描述 |
---|---|
color | 指定链接颜色。点击查看完整的 CSS 颜色值 |
浏览器支持
所有主要浏览器都支持 link 属性
范例
返回文档中未被点击链接,点击链接,点击访问后的链接颜色
<body id="w3s" link="blue" alink="green" vlink="red"> <p><a href="https://www.twle.cn">简单教程</a></p> <p><a href="https://www.twle.cn/yufei/html">HTML 基础教程</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>