How do you set a default value with jquery auto complete combobox?

后端 未结 14 1811
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-28 19:01

When using the jquery ui autocomplete combobox, can you set a default value for the combobox?

14条回答
  •  一生所求
    2020-12-28 19:32

    add method to jquery combobox script

    setValue: function(o) {            
        $(this.element).val(o);
        $(this.input).val($(this.element).find("option:selected").text());            
    }
    

提交回复
热议问题