Jquery自动完成,PHP作为源不起作用

时间:2013-07-24 14:19:47

标签: php javascript jquery json

我是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代码时没有得到。谁能给我一个线索?

非常感谢。

2 个答案:

答案 0 :(得分:0)

你有任何javascript错误?

使用jQuery尝试使用

$(document).ready(function() {
    .. Your autocomplete code here
});

而不是$(function() {});

这样$('#searchstr')元素就会存在

答案 1 :(得分:0)

在source-section中使用尾随逗号(特别是如果你正在使用IE)可能很容易。试试这个,它可能会起作用:

<script>
$(function() {
    $( "#searchstr" ).autocomplete(
    {
         source:'searchjson.php' //No comma at the end of this line
    })

});
</script>