JQuery选择器 - 在表中查找img

时间:2010-03-08 08:06:54

标签: asp.net jquery

当单击“心脏”按钮时,似乎无法找到以下内容来找到“头骨”按钮...

这是JQuery ......

           $(".voteup").click(function() {
                var id = $(this).attr("title");
                var userID = $('[id$=HiddenFieldUserID]').val();
                var ipAddress = $('[id$=HiddenFieldIPAddress]').val();
                var skullButton = $(this).parent().siblings(".votedowntd").children("votedown");
                registerUpVote("up", id, $(this), skullButton, userID, ipAddress);
            });

HTML ...

        <table width="200px">
            <td width="35px" class="votedowntd">
                <img src='<%# (bool)Eval("skull") ? "images/skull.png" : "images/skull-bw.png" %>' alt="Vote Down" class="votedown" title='<%# Eval("entry.ID") %>' />
            </td>
            <td width="130px" style="text-align: center;">
                Num Votes Goes Here
            </td>
            <td width="35px" class="voteuptd">
                <img src='<%# (bool)Eval("heart") ? "images/heart.png" : "images/heart-bw.png" %>' alt="Vote Up" class="voteup" title='<%# Eval("entry.ID") %>' />
            </td>
            <tr>
            </tr>
        </table>

所以基本上我需要做的是当点击一个img时,我需要找到另一个。

为什么我没有工作?有更好的方法吗?

1 个答案:

答案 0 :(得分:2)

这应该这样做:

$(this).closest('table').find('.votedown');