我这里有以下表格:
<table id="users-table">
<tbody>
<tr>
<td class="uid">1234</td>
<td class="user-checkbox"><input type="checkbox"></td>
</tr>
</tbody>
</table>
<tbody>
中存在多个<tr>
我需要编写代码来检查<td>
的.uid
类是否与代码中的uID
变量匹配,如果匹配,我需要使用.user-checkbox
类选中该复选框。
1条答案
按热度按时间33qvvth11#
这是一个原生的JS代码