使用jquery CascadingDropDown和jquery selectbox

时间:2013-06-06 12:49:16

标签: jquery cascadingdropdown jquery-selectbox

如何将jquery CascadingDropDown与jquery selectbox一起使用?

1 个答案:

答案 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');
    }
},

希望有所帮助