JQuery のオートコンプリート テキスト ボックスを使用して、州によってフィルター処理された配列から郡データを表示するスクリプトを作成しようとしています。状態はドロップダウン リストです。たとえば、ユーザーが州として「イリノイ」を選択した場合、ユーザーがテキスト ボックスに入力した物乞いの文字に基づいて、autocompklete が最も近い郡名を表示します。状態ごとに配列をフィルタリングし、正しいデータを配列にロードすることに成功しましたが、配列をオートコンプリートにロードしようとすると問題が発生します。これがコードセグメントです。ご協力ありがとうございました:
<body >
<script type="text/javascript">
function findCounties(State)
{
var County = new Object();
var xmlhttp;
if (window.XMLHttpRequest)
{
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}
else
{
// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp != null)
{
xmlhttp.open("GET","US_Counties.csv",false); // the false makes this synchronous!
xmlhttp.send();
var text = xmlhttp.responseText;
// text contains the ENTIRE CONTENTS of the text file
// you *could* just write those contents directly to the HTML output:
// but you might want to process that one line at a time. if so:
var lines = text.split("\n");
var cntCounty = 0;
for (var n=0; n<lines.length; n++)
{
if(lines[n].indexOf(State) > 0){
var line = lines[n];
var populate = line.split(',');
County[cntCounty] = populate[1];
cntCounty++;
}//IF
}//for
$(function() {
var Counties = [{
a_state: []
};
for(var i in County) {
var item = County[i];
Counties.a_state.push({
"label" : item.County
"value" : item.County`enter code here`
});
];
j$("#counties").autocomplete({
source: Counties
}).data("autocomplete")._renderItem = function(ul, item) {
return $("<li>").data("item.autocomplete", item).append("<a>" + item.label ++ "</a>").appendTo (ul);
});