我看了,無法找到我的問題的簡單答案。 我點擊其中一個TR
,然後點擊其他TR
,它工作正常,但點擊後它不再識別點擊行。 有什麼幫助嗎? 下面是HTML:jquery tr點擊輸入收音機檢查
<table>
<th>1</th>
<th>2</th>
<tr>
<td>Yes
<input type='radio' name='test' value='yes' />
</td>
</tr>
<tr>
<td>No
<input type='radio' name='test' value='no' />
</td>
</tr>
</table>
,這裏是jQuery的
$(function() {
$('table tr').click(function() {
$(this).find('input:radio').attr('checked', 'checked');
});
});
你到底想幹什麼? – Aiias
我希望能夠單擊表中的一行並檢查單選按鈕。點擊一行後,不再可以點擊。 – Ricky
如果您使用單選按鈕,如果單擊另一行,則先前單擊的行應該取消選中。如果這不是inteded行爲,你應該使用複選框來代替。 – relic