特定の時間にajaxオートコンプリートを呼び出す方法は? ここにこれが私のコードです
function auto(x){
x.autocomplete('ajax/getFriends',{
max:500,
width:300,
minChars:2,
autoFill: false,
formatItem: formatItem,
formatResult: formatResult
});
function formatItem(row) {
return row[0];
//return row[0] + " (<strong>id: " + row[1] + "</strong>)";
}
function formatResult(row) {
return row[0].replace(/(<.+?>)/gi, '');
}
$("#comment").result(function(event, data, formatted) {
$("#test1").val(data[1]);
$("#test2").val(data[2]);
});
}
しかし、エラー x.autocomplete is not a function と表示されます
私は上記のように呼んでいます
auto("string");
誰でもこれを解決する方法を教えてもらえますか
事前に感謝します私は英語が苦手です。間違いがあればすみません