我想使用 jquery 将更复杂的 html 片段附加到 div。我能够做到这一点,但我怎样才能在一个附加调用中做到这一点(现在我有几个)?任何意见表示赞赏!非常感谢。例子:
<div id="container">
<h1>Something</h1>
<!-- Insert here -->
</div>
片段应如下所示:
var arr = []; // can contain any number of items
//to be used here:
<h4>Something h4</h4><!-- This string is static -->
<p>Some paragraf</p><!-- This string is static -->
<ul> <!-- This is dynamic -->
<li>arr[0]</li>
<li>arr[1]</li>
<li>arr[2]</li>
<li>arr[...]</li>
</ul>