我正在尝试在点击时更改 td 的背景颜色。这是我目前对 JavaScript 的看法:
$(document).ready(function() {
$('#leftHoldNav table td').click(function(){
var $this = $(this);
$this.addClass('highlight');
$this.parent().siblings('table').find('td').removeClass('highlight');
});
});
这就是我的 HTML:
<div id="leftHoldNav">
<center>
<table cellpadding="0" cellspacing="0">
<tr>
<td onclick="loadPage('../about/info.php','#mainWrapLoad','../about/')" class="highlight">Info</td>
<td onclick="loadPage('../about/kcintl.php','#mainWrapLoad','../about/')" class="">KC Int'l</td>
<td onclick="loadPage('../about/board.php','#mainWrapLoad','../about/')" class="">Board</td>
<td onclick="loadPage('../about/dcon.php','#mainWrapLoad','../about/')" class="">D-Con</td>
</tr>
</table>
</center>
</div>
它不起作用,有人知道为什么吗?