我有一個用Smarty編譯的PHP模板。在這段代碼中我已經嵌入DIV部分,與此類似:JQuery追加不工作?
<div>
<div id="services" style="margin-top: 5px; width: 100%; display:none;">
<div id='blocking' style="float: left; width: 100%;">
<div id="div1" ...>
</div>
<div id="div2" style="float: left; height:100px; width: 100%; margin-top: 4px; margin-bottom:4px;">
<table id="list" width="100%">
<thead>
<tr>
<th width="30%" class="tablaIzq">Lists</th>
<th width="70%" class="tablaIzq">Description</th>
</tr>
</thead>
<tbody id="LBBody">
</tbody>
</table>
</div>
</div>
</div>
</div>
使用AJAX + JSON稱爲一個WebService ES ...我希望把一些數據,我收到的TBODY LBBody但是當我嘗試使用jquery的追加沒有附加。
它的完成這樣的:
$("#LBBody").append('<tr><td class="tablaIzq" style="font-weight: normal; height: 22;" colspan="3">Hi</td></tr>')
我使用追加錯?
感謝和問候。
您是否在DOM就緒狀態下調用append()? 即在$(function(){[...]});'? 否則當你調用append() – HBublitz