gpt4 book ai didi

javascript - 如何根据该列标题检查表格行中的单选按钮?

转载 作者:行者123 更新时间:2023-11-30 09:23:13 25 4
gpt4 key购买 nike

我有如下场景:

我必须在标题为“MyHeader2”的单选按钮上添加属性“checked”

<table>
<tr>
<th>
MyHeader
</th>
<th>
MyHeader2
</th>
</tr>
<tr>
<td>
<input type='radio' name='testradio' />
</td>
<td>
<input type='radio' name='testradio1' />
</td>
</tr>
</table>

如何在 jQuery 中实现它?

最佳答案

试试这个:

$("table tr th:contains(MyHeader2)").each(function(){
var i = $(this).index(); //Get the index of the th.
$("table tr td:eq("+i+") input:radio").prop("checked",true); // Set the radio to checked.
})

演示

$("table tr th:contains(MyHeader2)").each(function() {
var i = $(this).index();
$("table tr td:eq(" + i + ") input:radio").prop("checked", true)
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tr>
<th>
MyHeader
</th>
<th>
MyHeader2
</th>
</tr>
<tr>
<td>
<input type='radio' name='testradio' />
</td>
<td>
<input type='radio' name='testradio1' />
</td>
</tr>
</table>

关于javascript - 如何根据该列标题检查表格行中的单选按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50388026/

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