作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
调用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);
关于jquery - 在调用重置后,如何在 btn 组中禁用按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15335240/
我是一名优秀的程序员,十分优秀!