Javascript - AutoComplete的数组推送

时间:2012-11-16 16:36:11

标签: javascript arrays json autocomplete array-push

我正在处理从数组中读取的自动完成搜索栏。我需要解析一个JSON文件并将名称推送到一个数组中。我有一切工作,除了正确的命令推送到实际的数组。我将使用什么来推送到下面的数组?

    $("#schoolLocal").autocompleteArray(
    [],
    {
        delay:10,
        minChars:1,
        matchSubset:1,
        onItemSelect:selectItem,
        onFindValue:findValue,
        autoFill:true,
        maxItemsToShow:10
    }
);
我用过     $( “#schoolLocal”)autocompleteArray.push(名称);

当然,这不起作用。

感谢任何帮助。 谢谢!

1 个答案:

答案 0 :(得分:0)

什么是autoCompleteArray?数组或函数?

假设它是一个数组:

// declare the array  with 2 sub arrays,1 for names and other for definitions (?)
$("#schoolLocal").autocompleteArray = new Array(new Array(),{
        delay:10,
        minChars:1,
        matchSubset:1,
        onItemSelect:selectItem,
        onFindValue:findValue,
        autoFill:true,
        maxItemsToShow:10
    }
);

//push to the names array
$("#schoolLocal").autocompleteArray[0].push(name);