私はいくつかの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/