链接列表。当我们点击它时需要改变它的颜色,即突出显示活动链接......我不能使用css,因为这个页面没有刷新。想要突出显示当前链接。
HTML
<table border="0">
<tr style=" width: 100px;">
<td>
<div class="overMe">
<a href="javascript:void(0);" class="leftList">link 1</a>
</div>
</td>
</tr>
<tr style=" width: 100px;">
<td>
<div class="overMe">
<a href="javascript:void(0);" class="leftList">link 2</a>
</div>
</td>
</tr>
<tr style=" width: 100px;">
<td>
<div class="overMe">
<a href="javascript:void(0);" class="leftList">link 3</a>
</div>
</td>
</tr> </table>
CSS
a {
color: darkgreen;
}
.selected {
color: red;
}
jQuery 代码
$(document).ready(function(){
$('.overMe a').click(function(){
$(this).addClass('selected');
$('.overMe a').siblings().removeClass('selected');
});
})
示例:http: //jsfiddle.net/TL9rh/