如何将 jquery CascadingDropDown 与 jquery selectbox 一起使用?
问问题
694 次
1 回答
0
要使用 jquery CascadingDropDown 和 jquery 选择框插件,您需要在级联下拉列表中加载和重置事件后分离和附加:
在 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');
}
},
希望能帮助到你
于 2013-06-06T12:49:15.600 回答