jquery autocomplete with php source& json问题

时间:2012-05-02 14:57:20

标签: php jquery json

我想创建jquery自动完成和php,问题是自动完成的每条记录中显示的数据有两个值,我设法这样做(没有PHP),

$(function() {
        var authors = [
            {
                label: "jQuery",
                desc: "the write less, do more, JavaScript library"
            },
            {
                label: "jQuery UI",
                desc: "the official user interface library for jQuery"
            },
            {
                label: "Sizzle JS",
                desc: "a pure-JavaScript CSS selector engine"
            }
        ];

    $( "#authorname" ).autocomplete({
        minLength: 0,
        source: authors,
        focus: function( event, ui ) {
            $( "#authorname" ).val( ui.item.label );
            return false;
        },
        select: function( event, ui ) {
            $( "#authorname" ).val( ui.item.label );
            return false;
        }
    })
    .data( "autocomplete" )._renderItem = function( ul, item ) {
        return $( "<li></li>" )
            .data( "item.autocomplete", item )
            .append( "<a>" + item.label + "<br>" + item.desc + "</a>" )
            .appendTo( ul );
    };
});

现在我想将源代码更改为php页面(将作者更改为“getauthors.php”)

我不知道在“getauthors.php”里面放什么来为标签和desc传递两件事。

我设法使用json,

传递这样的事情
<?php
$json = array();
$json[]="test";
$json[]="test2";
$json[]="test3";

echo json_encode($json);
?>

这样的输出,

autocomplete

你可以看到第二件事总是未定义的,我如何使用json(或任何其他方式)在php中传递值。

感谢。

1 个答案:

答案 0 :(得分:1)

<?php
$json = array();
$json[] = array ("label"=>"test", "desc"=>"description");
...

echo json_encode($json);
?>