如何将jquery CascadingDropDown与jquery selectbox一起使用?
答案 0 :(得分:0)
要使用jquery CascadingDropDown和jquery selectbox插件,您需要在级联下拉列表中加载和重置事件后分离和附加:
在jquery.cascadingDropDown.js中进行以下更改:
reset: function () {
methods.clearItems();
$this.append($(optionTag)
.attr("value", "")
.text(config.promptText));
$this.trigger('change');
if ($this.attr('sb') != undefined) {
$this.selectbox('detach');
$this.selectbox('attach');
}
},
和
loaded: function () {
$this.removeAttr("disabled");
$this.trigger('change');
if ($this.attr('sb') != undefined) {
$this.selectbox('detach');
$this.selectbox('attach');
}
},
希望有所帮助