我有一个空的 div:
<div id="productlist" class="productlist" style="float:left;"> </div>
我将表格附加在:
$parent = $("#productlist").empty();
$parent.append('<table id="myTable" cellpadding="0" cellspacing="0" width="100%" class="productlist"><tbody>');
在我尝试在其中添加行和列:
$("#myTable > tbody").append('<br />');
$("#myTable > tbody").append('<tr align="center"><td align="center" id="colunm-product"><div id="brand-item"><a href="#" class="brand_id">Image here.</a></div>');
$("#myTable > tbody").append('<div class="newproduct" id="newproduct"><a href="#">New product.</a></div>');
$("#myTable > tbody").append('<div id="product_image"><a href="#" style="text-decoration:none">My image</a></div>');
$("#myTable > tbody").append('</td></tr></table>');
但在我看来结果:
<table id="myTable" class="productlist" width="100%" cellspacing="0" cellpadding="0" style="margin-left: 4px; padding-top: 2px;">
<tbody>
<br />
<tr align="center">
<td align="center" id="colunm-product">
<div id="brand-item">
<a href="#" class="brand_id">
Image here.
</a>
</div>
</td></tr>
<div class="newproduct" id="newproduct"><a href="#">New product.</a></div>
<div id="product_image"><a href="#" style="text-decoration:none">My image</a>
</div>
</table>
td 中只有一个 div。其他 2 div 呢,为什么他们不在那个 td 中?谁能告诉我,我该怎么做?
谢谢。