Jquery UI 自动完成组合框按钮单击事件

Jquery UI autocomplete combobox button click event

本文关键字:按钮 单击 事件 组合 UI Jquery      更新时间:2023-09-26

当使用它来创建组合框时,我在jquery ui自动完成时遇到了奇怪的行为。每当我单击滚动条滚动浏览结果列表,然后单击我的组合框按钮关闭结果时,结果列表都会关闭,然后再次打开。我希望它关闭菜单。

重现步骤

  1. 打开 JSFIDDLE 演示
  2. 在自动完成中键入"i"或点击下拉按钮。
  3. 单击垂直滚动以滚动结果
  4. 点击下拉按钮

"要创建脚本"按钮

 this.button = $("<button type='button'>&nbsp;</button>")
    .attr({ "tabIndex": -1, "title": "Show all items" })
    .insertAfter(input)
    .button({
         icons: {
             primary: "ui-icon-triangle-1-s"
         },
         text: false
    })
    .removeClass("ui-corner-all")
    .addClass("ui-corner-right ui-button-icon")
    .click(function () {
        // when i put breakpoint here, and my focus is not on input, 
        // then this if steatment is false????
        if (input.autocomplete("widget").is(":visible")) {
            input.autocomplete("close");
            return;
        }
        // work around a bug (likely same cause as #5265)
        $(this).blur();
        // pass empty string as value to search for, displaying all results
        input.autocomplete("search", "");
        input.focus();
});

CSS(强制长结果菜单滚动)

.ui-autocomplete {
    max-height: 100px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    padding-right: 20px;
}
/* IE 6 doesn't support max-height
 * we use height instead, but this forces the menu to always be this tall
 */
* html .ui-autocomplete {
    height: 100px;
}

我的解决方案可能是关闭小部件,即使焦点转移到小部件本身而不是输入元素?

任何想法如何修改此代码以使其以这种方式运行?

基于自动完成小部件的各种点击和鼠标事件的问题,我想出了这个:jsFiddle 示例

j查询:

var input = $('#txtComplete');
var data = [];
var isOpen = false;
function _init() {
    for (var idx = 0; idx <= 100; idx++) {
        data.push('item: ' + idx);
    };
    input.autocomplete({
        source: data,
        minLength: 0,
        open: function(event, ui) {
            isOpen = true;
        },
        select: function(event, ui) {
            isOpen = false;
        }
    });
}
function afterInit() {
    var button = $("<button type='button'>&nbsp;</button>").attr("tabIndex", -1).attr("title", "Show all items").insertAfter(input).button({
        icons: {
            primary: "ui-icon-triangle-1-s"
        },
        text: false
    }).removeClass("ui-corner-all").addClass("ui-corner-right ui-button-icon").click(function(event) {
        input.focus();
        if (isOpen) {
            input.autocomplete("close");
            isOpen = false;
        } else {
            input.autocomplete("search", "");
            event.stopImmediatePropagation();
        }
    });
}
$(window).click(function() {
    input.autocomplete("close");
    isOpen = false;
});
$(function() {
    _init();
    afterInit();
});​

问题是由于jquery ui自动完成中的解决方法。在某些情况下,有一个鼠标关闭事件设置以关闭菜单。在其中一个条件下,它会检查引发鼠标按下的项目是否是自动完成小部件的一部分。如果没有,它将关闭菜单。由于您正在跟踪组合框行为,并且您的按钮不是自动完成小部件的一部分,因此单击该按钮会因为此事件而关闭菜单。

您可以看到违规条件以及它从 github 上的自动完成源代码中的第 205 行开始的原因。可能值得在jquery ui论坛上提出这个问题,因为他们的组合框演示也有这个错误。

更新

此替换事件基于 jquery-ui 1.8.18。此事件已更改,并且很可能会再次更改。如果采用此路线,则可能需要在每个版本中手动更新此代码。

您可以修补 mousedown 事件,使其不关闭菜单,前提是在创建自动完成(jsfiddle 演示)后通过运行以下命令单击了组合按钮。

var input = $('#combotextbox').autocomplete(/*options*/);
input.data('autocomplete').menu.element.unbind('mousedown').mousedown(function(event) {
        var self = input.data('autocomplete');
        event.preventDefault();
        // clicking on the scrollbar causes focus to shift to the body
        // but we can't detect a mouseup or a click immediately afterward
        // so we have to track the next mousedown and close the menu if
        // the user clicks somewhere outside of the autocomplete
        var menuElement = self.menu.element[0];
        if (!$(event.target).closest(".ui-menu-item").length) {
            setTimeout(function() {
                $(document).one('mousedown', function(event) {
                    var t = $(event.target);
                    if (event.target !== self.element[0] && event.target !== menuElement && !$.ui.contains(menuElement, event.target) && !t.hasClass('ui-combo-trigger') && !t.parent().hasClass('ui-combo-trigger')) {
                        self.close();
                    }
                });
            }, 1);
        }
        // use another timeout to make sure the blur-event-handler on the input was already triggered
        setTimeout(function() {
            clearTimeout(self.closing);
        }, 13);
    });

这将删除当前的 mousedown 事件,然后将其重新添加并添加检查,以查看触发事件的元素或其父元素(单击按钮或单击按钮内的 ui 图标)是否具有类ui-combo-trigger

创建按钮的代码相对不变。我们只需要添加新的类ui-combo-trigger .

var button = $("<button type='button'>&nbsp;</button>").attr("tabIndex", -1).attr("title", "Show all items").insertAfter(input).button({
        icons: {
            primary: "ui-icon-triangle-1-s"
        },
        text: false
    }).removeClass("ui-corner-all").addClass("ui-corner-right ui-button-icon ui-combo-trigger").click(function(event) {
        // when i put breakpoint here, and my focus is not on input, 
        // then this if steatment is false????
        if (input.autocomplete("widget").is(":visible")) {
            input.autocomplete("close"); 
            return;
        }

        // work around a bug (likely same cause as #5265)
        $(this).blur();
        // pass empty string as value to search for, displaying all results
        input.autocomplete("search", "");
        input.focus();
        event.stopImmediatePropagation();
    });

试试这个jsfiddle。我认为它会帮助你。

var input = $('#txtComplete');
var data = [];
var openCheck = false;
function _init() {
    for (var idx = 0; idx <= 100; idx++) {
        data.push('item: ' + idx);
    };
    input.autocomplete({
        source: data,
        minLength: 0,
        open: function(event, ui) {
            openCheck = true;
        },
        select: function(event, ui) {
            openCheck = false;
        }
    });
}
function afterInit() {
    var button = $("<button type='button'>&nbsp;</button>").attr("tabIndex", -1).attr("title", "Show all items").insertAfter(input).button({
        icons: {
            primary: "ui-icon-triangle-1-s"
        },
        text: false
    }).removeClass("ui-corner-all").addClass("ui-corner-right ui-button-icon").click(function(event) {
        if (openCheck) {
            input.autocomplete("close");
            openCheck = false;
        } else {
            input.autocomplete("search", "");
        }
    });
}
$(function() {
    _init();
    afterInit();
});

布莱恩很好地解释了这个问题。使用 jquery ui 11,您可以执行以下操作:

wasOpen = false;
$button
  .mousedown(function() {
     wasOpen = input.autocomplete( "widget" ).is( ":visible" );
    })
   .click(function() {
       input.focus();
        // Close if already visible
        if ( wasOpen ) {
          return;
        }

请参阅 http://jqueryui.com/autocomplete/#combobox 中的示例