次の価格とテキストを 1 つにまとめようとしていますdiv
。
これは私が持っているものです:
<table cellspacing="0" cellpadding="0" border="0" class="thePrices">
<tbody>
<tr>
<td>
<font class="text colors_text">
<b>MSRP: <span class="priceis">$90.00</span></b>
</font><br>
<b><font class="pricecolor colors_productprice">
<font class="text colors_text"><b>Burkett Price:</b></font>
<span class="priceis">$289<sup>.99</sup></span>
</font>
</b><br>
<a href="a link">A link goes here</a>
<table>A TABLE WITH STUFF GOES HERE</table>
</td>
</tr>
</tbody>
</table>
これは私が取得しようとしているものです:
<table cellspacing="0" cellpadding="0" border="0" class="thePrices">
<tbody>
<tr>
<td>
**
<div class="pricebox">**
<font class="text colors_text">
<b>MSRP: <span class="priceis">$90.00</span></b>
</font><br>
<b><font class="pricecolor colors_productprice">
<font class="text colors_text"><b>Burkett Price:</b></font>
<span class="priceis">$289<sup>.99</sup></span>
</font>
</b><br> **
</div>**
<a href="a link">A link goes here</a>
<table>A TABLE WITH STUFF GOES HERE</table>
</td>
</tr>
</tbody>
</table>
これは機能しませんが、私が間違っていることを理解できます。
$(document).ready(function () {
$('.thePrices').find('td').find('font:first').before('<div class="pricebox">');
$('.thePrices').find('.colors_productprice').find('b').after('</div>');
});
おそらく、SLICEを使用する必要がありますか?