这是我的代码的摘录
$("#temp").append('<div class="dynamic">' );
$("#temp").append(a[i]);
$("#temp").append("</div>");
此内容位于 for 循环中,并动态地将元素添加到 id 为 temp 的 div。
我认为它应该产生的是
<div id="temp">
.....
<div class="dynamic">
Education //value of a[i]
</div>
....
</div>
但它究竟产生了什么
<div id="temp">
<div class="dynamic"></div>
Education
正如萤火虫所证实的那样。因此,我的 css 样式就崩溃了。
你能调查一下吗?谢谢