把鼠标移到文字链接上看看效果。
样板之一
样板之二
样板之三
安装:
步骤一 拷贝以下脚本贴在网页最靠近<body>之下。
<script>
function highlight(which,color){
if (document.all)
which.style.backgroundColor=color
}
</script>
步骤二 把以下代码放置在您要突显的文字链接的标记内。
onMouseover=highlight(this,'RED') onMouseout="highlight(this,'')"
例如:
把这个链接
<a href="mouye.html">点击这里</a>
改为:
<a href="mouye.html" onMouseover=highlight(this,'RED') onMouseout="highlight(this,'')">点击这里</a>
步骤三 更换颜色(样板为红色)以迎合您的品味。