我有一个数组
{
"status": "OK",
"message": "Data Show Successful",
"allknife": [
{
"name": "Folder",
"notes": ""
},
{
"name": "Folder2",
"notes": ""
}
}
]
}
我当前的代码正确运行
我当前的代码
<script>
$(document).ready(function() {
$("#person").change(function () {
var val = $(this).val()
if(val == "") return
$.getJSON("http://some.com/Knife/api/l.php?&returnformat=json", {"state":val}, function(res,code) {
$("#name").val(res.message)
$("#age").val(res.status)
})
})
})
</script>
现在我想从每个数组名称的allknife数组中填充我的选择框值。
喜欢
<option value="folder">0</option>
<option value="folder2">1</option>
此处值0和1表示文件夹是第1个数组o allknife
当用户选择#person选择框时,其他表单字段填写mycurrent代码,然后当用户选择第二个选择框0时,其他字段填充。
如果他们选择文件夹,那么其他文件填写来自allknife o没有数组。 if folder2然后从allknife数组2填充其他字段
我的表单看起来像
<form>
<select name="person" id="person">
<input type="text" name="name" id="name"><br/>
<input type="text" name="age" id="age"><br/>
<select id="allknife"></select>
<input type="text" name="name" id="name"><br/>
<input type="text" name="note" id="note"><br/>
<input type="text" name="codskill" id="codskill"><br/>
</form>
答案 0 :(得分:0)
您需要循环返回的数组。像这样:
$.getJSON("http://some.com/Knife/api/l.php?&returnformat=json", { "state": val }, function(res, code) {
$("#name").val(res.message);
$("#age").val(res.status);
$("#codskill").val(res.allknife[0]['name']);
$.each(res.allknife, function(i, item) {
$('<option />', { text: i, value: item.name }).appendTo('#allknife');
});
})
此外,您的<select name="person" id="person">
缺少结束标记。