自定义自动完成组合框中的事件

时间:2017-12-18 13:05:27

标签: javascript html autocomplete

我有一个自定义组合框,当选择自定义组合框的élément时,我搜索拦截clic事件。我应该添加什么?

$( function() {
        $.widget( "custom.combobox", {
          _create: function() {
            this.wrapper = $( "<span>" )
              .addClass( "custom-combobox" )
              .insertAfter( this.element );


        this.element.hide();
        this._createAutocomplete();
        this._createShowAllButton();
      },

      _createAutocomplete: function() {
        var selected = this.element.children( ":selected" ),
          value = selected.val() ? selected.text() : "";

   ....

感谢您的帮助。

0 个答案:

没有答案