作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望这不是一个重复的问题。我在 Stackoverflow 上进行了足够的搜索,找到了我最简单问题的答案。
我有一组单选框,根据单选框的值,我需要禁用/启用用户从组合框中选择一个。
无论我做什么,我都无法将组合框设置为只读或禁用。我通过直接将 JQueryUI 链接到 http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js 来使用它。 。将普通组合框制作为 jQuery 的代码如下:-
$('#cbCountry").combobox();
我尝试了网上不同地方指定的不同方法。似乎没有任何作用。
最佳答案
轻松修改组合框库以使用:
$("#cbCountry").combobox('disable');
$("#cbCountry").combobox('enable');
在您的combobox.js 文件中添加:
input = $("<input>")
至input = this.input = $("<input>")
.a = $("<a>")
至a = this.a = $("<a>")
.--
disable: function() {
this.input.prop('disabled',true);
this.input.autocomplete("disable");
this.a.button("disable");
},
enable: function() {
this.input.prop('disabled',false);
this.input.autocomplete("enable");
this.a.button("enable");
}
关于JQuery UI 组合框禁用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12483283/
我是一名优秀的程序员,十分优秀!