我有一些html:
<span class="variantprice"><span class="pricelabel">
Preis </span>€ 240,00 (CHF)</span>
使用 jquery 删除(CHF)的最佳方法是什么?甚至是 CSS ???
使用 jQuery:
$(".variantprice").html(function(){
return $(this).html().replace(" (CHF)", "");
});
见演示:http: //jsfiddle.net/AYZEs/