0

我有一些html:

    <span class="variantprice"><span class="pricelabel">
Preis&nbsp;</span>€ 240,00 (CHF)</span>

使用 jquery 删除(CHF)的最佳方法是什么?甚至是 CSS ???

4

1 回答 1

2

使用 jQuery:

    $(".variantprice").html(function(){
        return $(this).html().replace(" (CHF)", ""); 
    });

见演示:http: //jsfiddle.net/AYZEs/

于 2012-08-16T10:56:22.347 回答