我有一个Json响应。我必须在
中插入
<div id="xyz1">
<ul>
</ul>
</div>
<div id="xyz2">
<ul>
</ul>
</div>
for(var i=0; i<test.length; i++)
{
$("#xyz" + i).html('<li>' + test[i] +'<li>'):
}
如果我使用上面的代码,只插入一个
答案 0 :(得分:1)
<div id="xyz0">
<ul>
</ul>
</div>
<div id="xyz1">
<ul>
</ul>
</div>
答案 1 :(得分:0)
更正,您错过了#
,而您错过了/
</li>
for(var i=0; i<test.length; i++)
{
$("#xyz" + i).html('<li>' + test[i] +'</li>');
}
答案 2 :(得分:0)
你应该将<li>
推到ul
内而不是<div>
内
试试这个
$("#xyz" + i + " ul").html('<li>' + test[i] +'<li>');
//-----------^^---here addd this
已更新(看到评论)
$("#xyx" + i + "qwerty ul").html('<li>' + test[i] +'<li>');