0
我有兩個文件。傳遞json對象到數組 - 自動完成
location.php, that outputs this:
[["javascript"],["PHP"]]
,並在另一個文件:
<script type="text/javascript">
$.getJSON('location.php', function(data) {
var sampleTags = [];
$.each(data, function(key, val) {
sampleTags.push(val);
});
alert(sampleTags); // show javascript, php
//-------------------------------
// Preloading data in markup
//-------------------------------
$('#myULTags').tagit({
availableTags : sampleTags, // this param is of course optional. it's for autocomplete.
// configure the name of the input field (will be submitted with form), default: item[tags]
itemName : 'item',
fieldName : 'tags'
});
});
</script>
自動完成不工作。爲什麼?
如果我使用:
var sampleTags = [ 'javascript', 'php'];
一切運作良好,但使用JSON自動完成功能根本不起作用。