http://jsfiddle.net/tearex/untbe/
<body style="text-align:center">
<a>
HOW TO check a button
</a>
<fieldset data-role="controlgroup" data-type="horizontal" >
<input name="btn1" id="a1" type="radio" value="1" />
<label for="a1">1 populate USA</label>
<input name="btn1" id="a2" type="radio" />
<label for="a2" class="bigga">2 populate Germany</label>
</fieldset>
如何选择按钮?
document.getElementById('a2').attr('checked', 'checked')
jQuery("#a2").attr('checked', true);
jQuery("input[value='1']").attr('checked', true);
jQuery('input:radio[name="type"]').filter('[value="1"]').attr('checked', true);
我已经尝试了我在其他线程中找到的所有方法,但它们都不起作用。