Select2 select2-removed事件不影响其他select2

Select2 select2-removed event is not affecting other select2

我正在尝试在触发 select2-removed 事件时重置另一个 select2,但我只能影响其他 dom 元素。我想在删除第一个 select2 值时禁用第二个 select2。这是我的代码,“我做错了什么吗?我的 select2 版本是 3.5。提前致谢。

 $('#element_select2_1').on("select2-removed", function (e) {
        $('#dom_element').attr('disabled', 'disabled');
        $('#another_dom_element').attr('disabled', 'disabled');

        $('#element_select2_2').select2('disable');
 });

假设 "select2-removed" 按预期触发,尝试

    $('#element_select2_2').prop('disabled', true);

文档显示 属性 应用于基础 select 而不是 select2 控件。

https://select2.github.io/examples.html#disabled

我在任何地方都找不到任何真实的文档 "select2-removed",这是你的活动吗?所以,我创建了一些代码,将 1. 创建两个 select2s,创建一个按钮。在第一个 selec2 上注册一个 select2 destroy 事件和一个销毁触发该事件的 selec2 的按钮。触发的事件禁用第二个 select2。这是你想要做的吗?

            <script>
                $(function ($) {
                    // first select2
                    $("#sel1").select2();
                    // second select2
                    $("#sel2").select2();
                    // register event to detect select2 being destroyed
                    $("#sel1").next(".select2-container").on("remove", function () { $("#sel2").prop("disabled", true); })

                    // button that destroys the select2 triggering the event
                    $("#btn").button().click(function () {

                            $("#sel1").select2("destroy");

                    });
                })
            </script>
        </head>
        <body>
            <form>
                <select tabindex="0" id="sel1" aria-hidden="false">
                    <option value="AQ">Antarctica</option>
                    <option value="AI">Anguilla</option>
                    <option value="AG">Antigua and Barbuda</option>
                    <option value="AR">Argentina</option>
                    <option value="AM">Armenia</option>
                    <option value="AW">Aruba</option>
                </select><br />
                <select id="sel2">
                    <option value="BS">Bahamas</option>
                    <option value="BH">Bahrain</option>
                    <option value="BD">Bangladesh</option>
                    <option value="BB">Barbados</option>
                    <option value="BY">Belarus</option>
                    <option value="BE">Belgium</option>
                    <option value="BZ">Belize</option>
                </select><br />
                <button id="btn" type="button">remove</button>

            </form>
        </body>