Body link 属性

返回上一级

Body 对象的 link 属性用于设置或者返回 <body> 元素的 link 属性值

link 属性指定了文档中链接未被点击访问的颜色

语法

设置 link 属性

bodyObject.link="color"

返回 link 属性

bodyObject.link

值说明

描述
color 指定链接颜色。点击查看完整的 CSS 颜色值

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

范例

返回文档中未被点击链接,点击链接,点击访问后的链接颜色

<body id="w3s" link="blue" alink="green" vlink="red">
<p><a href="https://www.twle.cn">简单教程</a></p>
<p><a href="https://www.twle.cn/yufei/html">HTML 基础教程</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>

运行范例 »

返回上一级

JavaScript 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.