http://jsfiddle.net/tearex/untbe/Javascript或JQuery的:點擊一個單選按鈕
<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);
我已經嘗試了所有在其他線程中找到的方法,但都沒有工作。
這裏的你可以查看一個plnk.http://plnkr.co/edit/vhyWeTi8ixlsradfCeVN?p =預覽 – uptownhr