使用jQuery更改选项卡

时间:2013-01-05 04:11:41

标签: javascript jquery html

我正在尝试更改点击时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>

它没有用,有人知道为什么吗?

1 个答案:

答案 0 :(得分:4)

http://jsbin.com/inogov/1/edit

您无需返回parent,留在siblings

$this.siblings('td').removeClass('highlight');

你去了:

$('#leftHoldNav table td').click(function(){
    var $this = $(this);
    $this.addClass('highlight').siblings('td').removeClass('highlight');
});