gpt4 book ai didi

Javascript 阻止单选按钮工作

转载 作者:行者123 更新时间:2023-11-28 16:11:21 26 4
gpt4 key购买 nike

我认为这很简单,但我不明白为什么无法点击#type2

<input type="radio" id="type1" name="group1" checked>

<input type="radio" id="type2" name="group1">

<input type="text" class="type1">

<input type="text" class="type2" disabled>

<script>

function toggle() {
if ($('#type1').attr('checked', true)) {
$('.type1').attr('disabled', false);
$('.type2').attr('disabled', true);
}
else if ($('#type2').attr('checked', true)) {
$('.type1').attr('disabled', true);
$('.type2').attr('disabled', false);
}
}

$(document).ready(function() {
toggle();
});

</script>

我看不出问题出在哪里。任何帮助都会很棒,谢谢。

最佳答案

尝试:

function toggle() {
if ($('#type1').is(':checked')) {
$('.type1').attr('disabled', false);
$('.type2').attr('disabled', true);
}
else if ($('#type2').is(':checked')) {
$('.type1').attr('disabled', true);
$('.type2').attr('disabled', false);
}
}

示例: http://jsfiddle.net/andrewwhitaker/z5Wbv/1/

.attr的版本您使用的是设置 #type1checked 属性为true。您可以使用is ,与 :checked selector确定是否选中复选框/单选按钮。

关于Javascript 阻止单选按钮工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12849375/

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