Jquery ui Autocomplete Combobox - changed not firing

前端 未结 3 1371
故里飘歌
故里飘歌 2021-01-13 12:10

I need help with JQuery UI Autocomplete Combobox. I cannot get the \"CHANGED\" event to fire no matter what. I have pulled together this widget from various examples.

<
3条回答
  •  难免孤独
    2021-01-13 12:32

    simpler way to detect the user has changed the combobox Try this:

    $("#combobox").combobox({ 
        select: function (event, ui) { 
            alert(this.value);
        } 
    });
    

提交回复
热议问题