我有以下自动完成代码通过 AJAX 调用 PHP 文件并以 JSON 形式获取结果:
$( "#autocomplete_customer" ).on( "listviewbeforefilter", function ( e, data ) {
var $ul = $( this ),
$input = $( data.input ),
value = $input.val(),
html = "";
$ul.html( "" );
if ( value && value.length > 0 ) {
$ul.html( "<li><div class='ui-loader'><span class='ui-icon ui-icon-loading'></span></div></li>" );
$ul.listview( "refresh" );
$.ajax({
url: "SearchCustomer.php",
dataType: "jsonp",
crossDomain: true,
data: {
term: $input.val()
}
})
.then( function ( response ) {
$.each( response, function ( i, val ) {
html += "<li>" + val + "</li>";
});
$ul.html( html );
$ul.listview( "refresh" );
$ul.trigger( "updatelayout");
});
}
});
这是 SearchCustomer.php 文件:
<?php
include "config.php";
mysql_select_db($db, $con);
$search = $_GET['term'];
$result = mysql_query("my SELECT query on basis of $search") or die('Something went wrong');
$json = '[';
$first = true;
while ($row = mysql_fetch_assoc($result))
{
if (!$first) { $json .= ','; } else { $first = false; }
$json .= ".$row['cli_razon_social'].";
}
$json .= ']';
echo $json;
?>
我面临两个问题:
结果没有从 PHP 文件返回,或者我做错了。请帮我修复它。
当前用户无法从自动完成列表中选择值。如何修改此脚本以让用户从文本字段自动完成
ul
列表中选择自动完成值?
谢谢。