当我自动使用 jquery ui 单选按钮时,第一个单选按钮将获得焦点。 我怎样才能禁用它
试试这个
$(document).ready(function(){
$('div input:radio').blur();
});
这可能不是最好的...但是。它正在工作。
使用具有自动对焦功能的虚拟输入并将其隐藏。
<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>