当产品的价格为 0 时,我需要一种“简单”的方式来根据请求显示价格。我已经使用了这种方法,但不知何故它不起作用:(我的 js 路径是正确的) http://www.designersandbox.com/magento/magento-hide-the-price-for-a-free-product-using- jQuery/
我的来源:
<span class="price">€ 0,00</span>
js:
jQuery(document).ready(function() {
jQuery("span").each(function(i, e) {
if ( (jQuery(e).attr('class') == "price") && (jQuery(e).text() == "€ 0,00") ) {
jQuery(e).text("Price on request");
}
})
})
我看不出我做错了什么。