标签: javascript jquery html
我有一个对象,我试图将名称和描述添加到html正文中:
$('div#mydiv').html((j.root[D - 1].Name), (j.root[D - 1].Description));
然而,当我运行它时,只显示名称?
答案 0 :(得分:2)
.html不会带多个参数。使用+进行连接,将所有字符串组合成一个参数。
.html
+
$('div#mydiv').html(j.root[D-1].Name + ' ' + j.root[D-1].Description);