我想使用jquery创建它。
<div class="row" style="background-color:white;margin:5px; ">
<ul class="nav pull-left" style="text-align:center; margin:5px">
<li style="font-size:10px"><b>List2</b></li>
</ul>
</div>
答案 0 :(得分:1)
你可以用这个创建:
var element = $('<div class="row" style="background-color:white;margin:5px; ">
<ul class="nav pull-left" style="text-align:center; margin:5px">
<li style="font-size:10px"><b>List2</b></li>
</ul>
</div>')
查看这个小提琴,了解更多详情:http://jsfiddle.net/victorrseloy/vPsdz/