gpt4 book ai didi

javascript - jQuery 使单选按钮不可点击

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:56:56 24 4
gpt4 key购买 nike

是否可以在不“禁用”单选按钮的情况下使其“不可点击”/“不可选择”?

出于审美原因,我需要知道这是否可能以及如何实现。

当前代码如下:

<input name='example' value='1' type='radio'/>
<input name='example' value='2' checked='checked' type='radio'/>
<input name='example' value='3' type='radio'/>
<input name='example' value='4' type='radio'/>
<input name='example' value='5' type='radio'/>

最佳答案

要在不使用 disabled(这会简单得多)的情况下保留 radio 输入的选中/未选中状态,您可以使用以下内容:

// select the relevant radio input elements:
$('input[name="example"]')
// bind a change-event handler using 'on()':
.on('change', function(){
// re-select the same elements:
$('input[name="example"]')
// set the 'checked' property back to the default (on page-load) state:
.prop('checked', function(){
return this.defaultChecked;
});
});

JS Fiddle demo .

引用资料:

关于javascript - jQuery 使单选按钮不可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24252023/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com