0

JQueryオートコンプリートを使用しArrayて、ユーザーがボックスに入力した友達を作成する機能があります。

この配列はと呼ばれselected_Idます。しかし、私たちのプロジェクトは拡大し、「友達」の選択とともに(<--the one that produces the selected_Id array)

'enemies'関数を追加したいと思います。

そのコードスニペットを書き直して、2つの別々の配列を生成することは可能ですか?それらを分離しておくと、getfriends関数が2回呼び出されます(the getfriends function produces an array of available friends that loads into the jQuery ui that the user gets to choose from)

これが私が持っているものです:

  $(function() {
    var available = new Array();
    available = getFriends();
    available = my_friends
    function split( val ) {
        return val.split( /,\s*/ );
    }
    function extractLast( term ) {
        return split( term ).pop();
    }

    $( "#tags" )
        // 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({
            minLength: 0,
            source: function( request, response ) {
                // delegate back to autocomplete, but extract the last term
                response( $.ui.autocomplete.filter(
                    available, extractLast( request.term ) ) );
            },
            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
                //replaced value with label to continue showing the names selected  
                terms.push( ui.item.label);
                //ui.item.valuethis is where my 
                // add placeholder to get the comma-and-space at the end
                terms.push( "" );
                this.value = terms.join( ", " );
                return false;


            }
        });
            $( "button" ).button();
        $( "button" ).click(function() {
        var selected_Text = $( "#tags" ).val();
        var selected_Friends = selected_Text.split(","); 
        //friend name put in the autocomplete box
        var friend_Name = "";
        //selected id of the person in the array 
                var testCount = 0; 
        //i < j --> run through interation once 
        for(var i = 0, j=selected_Friends.length; i<j; i++ )
        {
            friend_Name = selected_Friends[i];
            while (friend_Name[0] == " "){
                friend_Name = friend_Name.substring(1,friend_Name.length);
            }


            for (var k = 0, l = my_friends.length; k<l; k++)
            {

                if (friend_Name == my_friends[k]["label"])
                {
                    selected_Id.push(my_friends[k]["value"])

                    testCount++;

                } else {

                } 
            }
        }

        return false; 


    });
 });
4

2 に答える 2

3

配列のオブジェクトを返すことができます:

function someFunction() {
    return {
        enemies: [1, 2, 3],
        friends: [4, 5, 6]
    };
}
console.log(someFunction().enemies) //The array of [1,2,3]
于 2012-07-22T17:46:22.633 に答える
0

私が言っている質問を読むだけで...オブジェクト内に2つの配列をカプセル化してオブジェクトを返すだけで、関数から2つの配列を返すことができます。

function get2arrays() {
    var firstArray = new Array();
    var secondArray = new Array();

    ......

    return { First: firstArray, Second: secondArray };
}
于 2012-07-22T17:46:48.927 に答える