gpt4 book ai didi

jquery - 使用 jQuery 的 prop() 切换禁用属性不起作用

转载 作者:行者123 更新时间:2023-12-03 21:47:14 24 4
gpt4 key购买 nike

首先,the fiddle

$('#enableButtonB').click(function (e) {
if($(e.target).is(':checked'))
{
$('#myButtonB').removeProp('disabled');
alert('Enable Button B');
}
else
{
$('#myButtonB').prop('disabled', true);
alert('Disable Button B');
}
});

我正在尝试使用 jQuery 的 .prop()removeProp() 方法根据某些条件启用和禁用按钮。在元素上调用 removeProp() 之前,它似乎工作正常。此后,对 prop() 的任何后续调用都无法禁用按钮。

重复启用和禁用元素的正确方法是什么?

最佳答案

而不是

.removeProp('disabled')

使用

.prop('disabled',false)

fiddle :http://jsfiddle.net/kqnZz/6/

关于jquery - 使用 jQuery 的 prop() 切换禁用属性不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10919808/

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