我正在尝试替换 span 中数据的值
.ajax ({
.
.
.
success: function(data){
$("#ID1").html(data[0]);
$("#ID2").val(data[1]);
}
});
<span id ='ID1'>test</span>
<input id = 'ID2'>
返回数据是 [["abc"],["def"]] 使用 json_encode ID1 没有将测试更改为 abc 而 ID2 的值能够更改为 def 有什么问题?