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

后端 未结 14 1977
佛祖请我去吃肉
佛祖请我去吃肉 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:27

    Add below One Line of Code before " this._on( this.input, { " line

    this.input[0].defaultValue = value;
    

    after create code in autocomplete combobox script. You can also reset with reset button of html.

提交回复
热议问题