这对你们中的一些人来说可能很容易,但对我来说非常困难,因为这是第一次这样做。
通过查看网络上的一些示例,我最终得到了以下自动建议示例的代码,但该代码不起作用。
谢谢
HTML
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('#textbox_postcode').autocomplete(
{
source: 'search-db.php',
minLength: 3
});
});
</script>
</head>
<body>
<form action="search.php" method="post">
<input type="text" id="textbox_postcode" value="" /> <input type="submit" value="Search" />
</form>
</body>
</html>
PHP
$keyword = ltrim(strtolower(strip_tags($_GET['keyword'])));
if (!$keyword) 返回;
$host = '本地主机'; $user = 'root'; $pswd = ''; $dtbs = '地理地图';
$host_conn = mysql_connect($host, $user, $pswd); $dtbs_conn = mysql_select_db($dtbs);
$return = 数组();
$sql = "SELECT id, postcode FROM postcodes WHERE postcode LIKE '$keyword%' ORDER BY postcode"; $run = mysql_query($sql);
if (@mysql_num_rows($run) == 0) 返回;
而 ($records = mysql_fetch_array($run, MYSQL_ASSOC)) { $return[] = $records; }
回声 json_encode($return);