我已尝试所有方法取消选中单选按钮的第一个选项并检查最后一个选项,这里是html表单
$('#use_for_shipping_yes').prop('checked', false);
$('#use_for_shipping_store').prop('checked', true);
我想更改以检查最后一个选项,该怎么做?
答案 0 :(得分:0)
您的ID选择器错误,元素的ID为billing:use_for_shipping_store
,所以
$('#billing\\:use_for_shipping_store').prop('checked', true);
演示:Fiddle
您需要使用:
为selector to work
\:
答案 1 :(得分:0)
你可以加入checked =" check"对于html中的最后一个选项。 HTML:
<input type="radio" name="billing[use_for_shipping]" id="billing:use_for_shipping_store" value="1" checked="checked" onclick="$('shipping:same_as_billing').checked = true;">
请参阅小提琴:http://jsfiddle.net/n5AdN/3/