vLink 属性可设置或者返回 body 元素中vlink属性值。
vlink 属性描述了点击过的链接文本颜色。
设置 vLink 属性:
bodyObject.vLink="color"
返回 vLink 属性:
bodyObject.vLink
值 | 描述 |
---|---|
color | 指定链接颜色。查看完整的 CSS 颜色值 |
所有主要浏览器都支持 vLink 属性
返回页面链接点击及点击后文本的颜色值:
<html>
<body id="w3s" link="blue" alink="green" vlink="red">
<p><a href="http://www.w3cschool.cn">W3CSchool.cc</a></p>
<p><a href="//www.w3cschool.cn/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>
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。