-1

我有以下 html 我无法编辑 html:

<tr>
    <td>
        <font class="text colors_text"><span class="percarton" style="font-weight: normal;"><font class="text colors_text">
                <b>Price Per Carton </b></font></span><span class="csqft_price">$101.82</span></font><br>
        <b> <span class="percarton" style="font-weight: normal;">Members Price 1: </span>
            <span class="csqft_price"><font class="pricecolor colors_productprice">$96.82<br>
            </font></span></b>
    </td>
</tr>

每当 html 中有会员价格时,<span class="csqft_price"></span>每箱的价格应该被删除,它应该被应用到 96.82 美元,也<span class="csqft_price"></span>应该在字体标签被删除之前。请指教。

4

1 回答 1

0
function removeClass(el, name) {

  var classes = el.className || '',
    bits = classes.split(' '),
    str = '',
    len = bits.length,
    i = 0;

  for (; i < len; i++) {
    if (bits[i] != name) str += bits[i] + ' ';
  };

  el.className = str;

};

这里有一个演示http://jsfiddle.net/NQq2z/1/

于 2012-04-14T09:48:41.820 回答