当我自动使用jquery ui单选按钮时,第一个单选按钮正在聚焦。 如何禁用它
答案 0 :(得分:0)
试试这个
$(document).ready(function(){
$('div input:radio').blur();
});
答案 1 :(得分:0)
这可能不是最好的......但是。它正在发挥作用。
<input autofocus style="display:none;"/>
<div id="Ref_opt">
<label for="Ref_opt1">Label</label>
<input type="radio" id="Ref_opt1" name="Ref_opt" value="1">
<label for="Ref_opt2">Label 2</label>
<input type="radio" id="Ref_opt2" name="Ref_opt" value="2">
</div>
<script>
$( "#Ref_opt" ).buttonset();
</script>