点击按钮后如何触发任何文本框的autocomplete
事件?
我尝试了很多东西,但到目前为止还没有任何效果。
$('.button').on("click",function(e) {
e.preventDefault();
$('.searchtxt').focus();
$("#auto").autocomplete({
source:'get_stud.php',
select: function( event, ui ) {
getid(ui.item.value, this);
}
});
$('#auto').focus();
});
答案 0 :(得分:0)
我找到了这个问题的方法,并且它有效。 使用这种方法:
$( ".selector" ).autocomplete( "search", "" );
将你的关键字放在第二个参数中,试试吧。
答案 1 :(得分:-1)
而不是
$('。button')。on(“click”,function(e){
使用
$(“。button”)。click(function(){