空のdivが1つあります:
<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が1つだけあります。他の2divはどうですか、なぜそれらはそのtdにないのですか?誰か教えてもらえますか、どうすればいいですか?
ありがとうございます。