gpt4 book ai didi

javascript - jQuery 的 :checked not working?

转载 作者:可可西里 更新时间:2023-11-01 02:55:10 27 4
gpt4 key购买 nike

因此,如果未选中复选框但它无法正常工作,我将尝试禁用文本字段。

示例:http://jsfiddle.net/GV7U9/

<input type="checkbox" id="check" checked /><br />
#<input type="text" size="8" maxlength="6" id="colour" placeholder="ffffff" />

<script>
$('#check').change(function(){
if( $('#check:checked') ){
$('#colour').removeAttr('disabled');
} else {
$('#colour').attr('disabled','');
}
});
</script>

这是一个简短的例子,说明我正在尝试做什么,但它不想工作。控制台没有错误。

有人可以解释为什么这不起作用吗?

最佳答案

使用 .prop() 也可以使用选中状态来设置值

$('#check').change(function () {
$('#colour').prop('disabled', !this.checked);
});

演示:Fiddle

关于javascript - jQuery 的 :checked not working?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21621811/

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