gpt4 book ai didi

javascript - 如何使用 Jquery 选择特定的嵌套元素

转载 作者:行者123 更新时间:2023-11-28 13:29:46 25 4
gpt4 key购买 nike

我有这个标记

     <table id="myexample" class="myclass">
<thead>
<tr>
<th><input type="checkbox" value="tableoption1"> Username</th>
<th> Something </th>
<th> Something </th>
<th> Something </th>
<th> Something </th>
<th> Something </th>
<th> Something </th>

</tr>
</thead>
<tbody>
<tr>
<td> <input id="user1" type="checkbox" value="tableoption1"> John Smith </a></td>
<td> Nickname</td>
<td> Address </td>
<td> Registerd</td>
<td>10-10-2014 </td>
<td>09-11-2014</td>
<td>03-02-2014</td>
</tr>
</table>

如何使用 Jquery 选择 id=user1 的输入元素?

我已经尝试过这个但不起作用

 $("#users tbody tr td input").click(function(){ 
alert ("success");
});

有什么建议吗?

最佳答案

这应该有效:

$('#user1').click(function(){ 
alert ("success");
});

关于javascript - 如何使用 Jquery 选择特定的嵌套元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25977716/

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