gpt4 book ai didi

jquery - 禁用其他选项 (jQuery)

转载 作者:行者123 更新时间:2023-12-01 07:01:25 25 4
gpt4 key购买 nike

<p><label><input type="radio" name="group1" /> one</label></p>
<p><label><input type="radio" name="group1" /> two</label></p>
<p><label><input type="radio" name="group1" /> three</label></p>

当选择其中一个 radio 输入时,我想完全禁用其他 radio 输入。我尝试使用 jquery 兄弟选择器,但只有当所有选择都位于同一父元素中时它才有效。

感谢您的帮助

最佳答案

这应该有效:

$(':radio[name=group1]').change(function() {
$(':radio[name=group1]:not(:checked)').attr('disabled','disabled');
});​

Example

或者更动态的方法:

$(':radio').change(function() {
var name = $(this).attr('name');
$(':radio[name='+name+']:not(:checked)').attr('disabled','disabled');
});​

Example

关于jquery - 禁用其他选项 (jQuery),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3521525/

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