1

jQuery、PHP、および MySQL を使用して、フォームで複数のオートコンプリートを使用したいと考えています。しかし、それは私にはうまくいきません。間違いはありますか?


HTML コード:

<input type="text" id="country" name="country" />

jQuery コード:

$( "#countries" )
        // don't navigate away from the field on tab when selecting an item
        .bind( "keydown", function( event ) {
            if ( event.keyCode === $.ui.keyCode.TAB &&
                $( this ).data( "autocomplete" ).menu.active ) {
                event.preventDefault();
            }
        })

        .autocomplete({
            source: function( request, response ) {
                $.getJSON( "process/find_countries.php", {
                    term: extractLast( request.term )
                }, response );
            },
            search: function() {
                // custom minLength
                var term = extractLast( this.value );
                if ( term.length < 2 ) {
                    return false;
                }
            },
            focus: function() {
                // prevent value inserted on focus
                return false;
            },
            select: function( event, ui ) {
                var terms = split( this.value );
                // remove the current input
                terms.pop();
                // add the selected item
                terms.push( ui.item.value );
                // add placeholder to get the comma-and-space at the end
                terms.push( "" );
                this.value = terms.join( ", " );
                return false;
            }
        });  

PHP コード

    $result = array();
    $term = strtolower($_GET["term"]);
    $sql = "SELECT title FROM tbl_countries WHERE title LIKE ?";
    $q = $db->prepare($sql);
    $q->execute(array('%'.$term.'%'));
    $rows = $q->rowCount();
    echo($rows);
    while ($r = $q->fetch())
    {
        array_push($result,array('label'=>$r['title'], 'value'=>$r['title']));
    }
    echo json_encode($result);
4

1 に答える 1

2

サーバーからのfirebug応答を参照してください。そしてなぜあなたは echo($rows); をするのですか??

于 2012-07-27T13:41:10.997 に答える