gpt4 book ai didi

jquery - 在调用重置后,如何在 btn 组中禁用按钮?

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

调用reset后,如何在btn-group中设置禁用按钮

我有一个btn-group。我将一个按钮设置为禁用。一切正常。

但是,如果我调用button('reset'),那么它会删除按钮上的禁用状态,并且永远无法再次添加。

这是一个 fiddle http://jsfiddle.net/ejW3w/66/

$(".btn-group button").button("reset"); // removed the disable !!
$(".btn-group button").addClass('disabled').attr('disabled','disabled'); // This addclass does not re-add the disabled !!

我尝试使用 .addClass('disabled').attr('disabled','disabled') 添加禁用:但没有任何效果。

谢谢..

最佳答案

试试这个:

$(".btn-group button").addClass('disabled').prop('disabled',true);

fiddle http://jsfiddle.net/ejW3w/70/

文档 http://api.jquery.com/prop/

关于jquery - 在调用重置后,如何在 btn 组中禁用按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15335240/

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