1
我想用新的tr封裝我的表,然後用tr封裝所有的td。jQuery用jQuery封裝一個tr td
我的代碼如下:
$('.ccbnBgTblTxt td').wrap('<tr class="new"/>');
我試圖做的是..這
<tr class="new"><td></td><td></td><td></td></tr>
現在我得到這樣的結果。
<tr class="new"><td></td></tr><tr class="new"><td></td></tr>
無論如何要包裝所有的TD?
,什麼是你的(相關)HTML? –
http://api.jquery.com/wrapAll –