x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
</head>
7
<body id="w3s" link="blue" alink="green" vlink="#FF0000">
8
9
<p><a href="https://www.mifengjc.com">mifengjc.com</a></p>
10
<p><a href="https://www.mifengjc.com/html/">HTML 教程</a></p>
11
<script>
12
document.write("未点击链接颜色是: ")
13
document.write(document.getElementById("w3s").link);
14
document.write("<br>选中链接颜色是: ")
15
document.write(document.getElementById("w3s").aLink);
16
document.write("<br>已访问的链接颜色是: ")
17
document.write(document.getElementById("w3s").vLink);
18
</script>
19
<p><b>注意:</b> Internet Explorer总是返回十六进制的颜色,而大多数其他浏览器返回属性值。</p>
20
<p><b>注意:</b> 如果使用颜色名称,不同的浏览器可能呈现不同的颜色,和Firefox如果属性值在RGB代码中时有问题(不会显示正确的颜色)。</p>
21
<p><b>贴士:</b>在所有的浏览器产生相同的结果,总是使用十六进制代码来指定颜色。</p>
22
23
</body>
24
</html>