當產品的價格爲0時,我需要一個「簡單」的方式來顯示Price on request。 我已經使用這個梅索德但不知何故,它不工作:(我的js的路徑是正確的) http://www.designersandbox.com/magento/magento-hide-the-price-for-a-free-product-using-jquery/Magento當價格= 0時顯示其他消息
我來源:
<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");
}
})
})
我不看看我做錯了什麼。
我的小提琴作品,一定是有衝突??? http://jsfiddle.net/fourroses666/KAeRt/ – user123