我该如何用 jQuery 来做这件事?
基本结构:
<form id="myForm">
<iframe>
<!-- Normal HTML headers omitted -->
<input type=radio name="myRadio" value=1>First
<input type=radio name="myRadio" value=2>Second
<input type=radio name="myRadio" value=3>Third
</iframe>
<input type=button value="Submit" />
</form>
我尝试了网上的各种例子,例如
$("input[@type=radio][@checked]");
但是失败了。即使使用 jQuery 表单插件的.fieldValue()失败。