在用户输入 3 个字符后,我如何进行 Ajax 搜索?我不是 javascript 方面的专家,但到目前为止,这是我的 HTML 文件:
<form>
<input type="text" id="searchField" name="searchField" placeholder="...">
</form>
<script>
$('#searchField').searchbox({
url: 'components/search_ajax.php',
param: 'q',
dom_id: '#searchResult',
delay: 0,
loading_css: '#spinner'
});
</script>
目前,仅在按下退格按钮时才调用搜索(然后表示我的所有数据库条目,因为存在没有字符的匹配搜索)。
提前致谢!问候。