显示时禁用 jquery ui 单选按钮的焦点

问题描述 投票:0回答:2

当我自动使用 jquery ui 单选按钮时,第一个单选按钮将获得焦点。 我怎样才能禁用它

enter image description here

javascript jquery jquery-ui jquery-plugins
2个回答
1
投票

试试这个

$(document).ready(function(){
$('div input:radio').blur();
});

1
投票

这可能不是最好的...但是。它正在工作。

使用具有自动对焦功能的虚拟输入并将其隐藏。

<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>
© www.soinside.com 2019 - 2024. All rights reserved.