1
我有以下形式使用jQuery UI自動完成從MySQL數據庫的建議
<form action="search.php" method="POST">
<input type="text" name="search" id="search-input">
<input type="submit" value="Submit" id="submit">
</form>
的search.php
<?php
require_once 'db.php';
$a = array();
if (isset($_POST['search']) && !empty($_POST['search'])) {
$search_param = trim($_POST['search']);
$slct_search = $db->prepare("SELECT student_name FROM student_details WHERE student_name LIKE ?") or die($db->error);
$slct_search->bind_param('s', $search_param);
$slct_search->execute();
$res = $slct_search->get_result();
if($res->num_rows) {
while ($result = $res->fetch_object()) {
$a[] = $result->student_name;
}
echo json_encode($a);
} else {
echo 'OOPS we had a problem';
}
}
?>
的search.php工作正常。它返回
[ 「拉維」, 「拉維」]
JS代碼
$(function() {
$("#search-input").autocomplete({
source: "search.php",
minLength: 2
});
});
問題是,當我開始在文本框中鍵入立即顯示
沒有搜索結果。
我也嘗試JQuery UI Autocomplete Search Results do not display
請任何一個答案與實例 – Prakash