当前位置:K88软件开发文章中心编程语言JavaScriptJS02 → 文章内容

HTML DOM Body link 属性

减小字体 增大字体 作者:佚名  来源:网上搜集  发布时间:2019-1-26 10:47:52

由 叫我周泡泡 创建, 最后一次修改 2016-11-25 Body link 属性 Body 对象定义和用法 link 属性可设置或者返回 body 元素的 link属性值。 link 属性指定了文档中链接未被点击访问的颜色。语法设置 link 属性:bodyObject.link="color"返回 link 属性:bodyObject.link值描述color指定链接颜色。查看完整的 CSS 颜色值 浏览器支持所有主要浏览器都支持 link 属性实例实例返回文档中未被点击链接,点击链接,点击访问后的链接颜色:<html><body id="w3s" link="blue" alink="green" vlink="red"><p><a href="http://www.k88.net">W3CSchool.cc</a></p><p><a href="//www.k88.net/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>尝试一下 ? Body 对象

HTML DOM Body link 属性