Javascript 参考手册

HTML DOM 对象

Body vLink 属性

Body 对象

定义和用法

vLink 属性可设置或者返回 body 元素中vlink属性值。

vlink 属性描述了点击过的链接文本颜色。

语法

设置 vLink 属性:

bodyObject.vLink="color"

返回 vLink 属性:

bodyObject.vLink
描述
color指定链接颜色。查看完整的 CSS 颜色值

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 vLink 属性

实例

实例

返回页面链接点击及点击后文本的颜色值:

<html>

<body id="w3s" link="blue" alink="green" vlink="red">


<p><a href="https://www.ancii.com">W3CSchool.cc</a></p>

<p><a href="/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 对象

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号