JavaScript 参考手册
Body link 属性
返回文档中未被点击链接,点击链接,点击访问后的链接颜色
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> </head> <body id="w3s" link="blue" alink="green" vlink="#FF0000"> <p><a href="https://www.mifengjc.com">mifengjc.com</a></p> <p><a href="https://www.mifengjc.com/html/">HTML 教程</a></p> <script> document.write("未点击链接颜色是: ") document.write(document.getElementById("w3s").link); document.write("<br>选中链接颜色是: ") document.write(document.getElementById("w3s").aLink); document.write("<br>已访问的链接颜色是: ") document.write(document.getElementById("w3s").vLink); </script> <p><b>注意:</b> Internet Explorer总是返回十六进制的颜色,而大多数其他浏览器返回属性值。</p> <p><b>注意:</b> 如果使用颜色名称,不同的浏览器可能呈现不同的颜色,和Firefox如果属性值在RGB代码中时有问题(不会显示正确的颜色)。</p> <p><b>贴士:</b>在所有的浏览器产生相同的结果,总是使用十六进制代码来指定颜色。</p> </body> </html>
运行结果:
点击运行 »