我正在尝试使用jQuery查找选择的无线电选项,然后使用.click()模拟点击
我目前的代码是:
jQuery('form input[type=radio]:checked').click();
但它不起作用。
答案 0 :(得分:2)
我为您创建了一个测试用例,您可以在其中测试它是否真的有效。它似乎适用于FF 7中的以下设置。http://jsfiddle.net/ER5Hu/
执行以下步骤:
这是html:
<html>
<body>
<form>
<input type="radio"/>hello
<input type="radio"/>bye
<input type="button" value="button" id="testbutton"/>
</form>
</body>
</html>
和jquery代码:
$(document).ready(function(){
$('form input[type=radio]').click(function(){
alert('clicking');
});
$('#testbutton').click(function(){
$('form input[type=radio]:checked').click();
});
});