我在页面上有5个链接,当我点击每个链接时它会改变颜色但是只要ma = ove我的光标并放在页面的其他区域,主动链接上的焦点就会消失。所以我无法显示当前的链接状态。请告诉我如何解决
答案 0 :(得分:3)
<强> HTML 强>
<tr>
<td>
<a href="#" class="linkbold">Basic2</a>
</td>
</tr>
<tr>
<td>
<a href="#" class="linkbold">Basic3</a>
</td>
</tr>
<tr>
<td>
<a href="#" class="linkbold">Basic4</a>
</td>
</tr>
<强>的CSS 强>
.linkbold{ color:#0066FF; font-family:Tahoma; font-size:11px; text-decoration:none; font-weight:bold !important; }
.active { color: red; } // define any color for active class
// you can use css shorthand for font property
.linkbold { font: bold 11px Tahoma, sans-serif; color:#0066FF; }
如果您想了解有关css shorthand
的更多信息Jquery
$('a.linkbold').on('click', function(){
$('a.linkbold').removeClass('active'); // remove any active class
$(this).addClass('active'); // and then add active class for clicked element.
});
答案 1 :(得分:-2)
<html>
<head>
<style type="text/css">
a:link {color:blue;}
a:visited {color:red;}
a:hover {color:green;}
</style>
</head>
<body>
<a href="#">first</a>
<br/>
<a href="#">second</a>
</body>
</html>