gpt4 book ai didi

jquery - 找到 Sibling 中的复选框并使用 jQuery 进行检查

转载 作者:行者123 更新时间:2023-12-01 07:30:48 25 4
gpt4 key购买 nike

  $('.answerlabel').click(function()
{
$(this).siblings('.answer').find('input:checkbox').attr("checked","checked");
});

“answer”是一个类,“answerlabel”是另一个类。两者都在同一个类中。但它不起作用。

有什么建议吗..这是我的 HTML 代码

 <table>
<tr>
<td class="answer"><input tabindex="5" type="checkbox" name="Dum1_5" id="Dum1_5" value="1"/></td>
<td class="answerlabel"><label for="Dum1_5" id="Dum1_5_label"><table class="sample"><tr><td><img src="http://bizbox.slate.com/blog/google.jpg"></td></tr><tr><td><b>Product 5</b></td></tr><tr><td>Product Description 5</td></tr><tr><td><b>Price 5</b></td></tr></table></label></td>
</tr>
</table>

最佳答案

试试这个来获取功能:

$('.answerlabel label').click(function(){
$(this).parents('.answerlabel:first').siblings('.answer').find('input:checkbox').attr("checked","checked");
});

关于jquery - 找到 Sibling <td> 中的复选框并使用 jQuery 进行检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6307993/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com