用.text替换div值

时间:2012-08-08 02:54:39

标签: ajax

我正在尝试替换span

中的数据值
.ajax ({
.
.
.
success: function(data){
                $("#ID1").html(data[0]);
                $("#ID2").val(data[1]);
                }
            });
<span id ='ID1'>test</span>
<input id = 'ID2'>

使用json_encode返回数据是[[“abc”],[“def”]] ID1没有将测试更改为abc ID2的值可以更改为def 怎么了?

1 个答案:

答案 0 :(得分:0)

使用$("#ID1").html(data[0])代替$("#ID1").val(data[0]);