我正在使用jQuery自动完成,但是没有工作,我有一个JSON对象数组,并且想法是当有人搜索它开始的邮政编码或城镇时显示他的JSON对象值。
以下是代码:
JSON:
[ {
"label": "AB10",
"value": "Aberdeen "
},
{
"label": "AB11",
"value": "Aberdeen "
},
...]
JS:
$(function() {
var availableTags = <?php include('autocomplete.php'); ?>;
$("#uk_postcode").autocomplete({
source: availableTags,
autoFocus:true
});
});