我是 jQuery 新手,并试图在文本框中设置一个简单的自动完成功能。我的代码如下:
HTML:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#searchstr" ).autocomplete(
{
source:'searchjson.php',
})
});
</script>
<?php
include('code.php') ;
show_header();
?>
<title>CodeLib</title>
</head>
<body>
<div><h3>Welcome to CodeLib.com.au</h3><div>
<h4>Articles</h4>
<form action="index.php" method="get">
<div class="ui-widget" >Search:(4 chars min) <input name="searchstr" id="searchstr" type="text" /></div>
</form>
</body>
我的PHP代码是:
<?php
include("code.php");
// if the 'term' variable is not sent with the request, exit
if ( !isset($_REQUEST['searchstr']) )
exit;
open_db();
// query the database table for zip codes that match 'term'
$rs = mysql_query('select article_title from articles where article_title like "'. mysql_real_escape_string($_REQUEST['searchstr']) .'%" limit 10');
// loop through each zipcode returned and format the response for jQuery
$data = array();
$str = "";
if ( $rs && mysql_num_rows($rs) )
{
while( $row = mysql_fetch_array($rs, MYSQL_ASSOC) )
{
$data[] = array('label' => $row['article_title']);
}
}
// jQuery wants JSON data
echo json_encode($data);
flush();
?>
有几点需要注意:
我已经使用固定值测试了脚本并更改了源,如下所示。
source: availableTags
并在 JS 中分配固定值 - 工作正常
使用传入查询字符串的字符串测试 PHP,我得到的结果为:
[{"label":"Simple HTML rich text editor for your web page"}]
但问题是当我将源分配给 php 代码时我没有得到。谁能给我一个线索??
非常感谢。