Magento 产品详细信息页面有添加到愿望清单和添加到购物车的按钮,它们在 ie 8 中没有任何作用,但适用于其他浏览器。一键中的部分代码是
<button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>
它应该连接的脚本函数是:
<script type="text/javascript">
<?php if($this->getMessagesBlock()->getGroupedHtml()): ?>
document.observe("dom:loaded", function(){
var submitButton = $$('.btn-cart')[0];
productAddToCartForm.submit(submitButton);
});
<?php endif; ?>
</script>
任何帮助,将不胜感激。
当我运行调试时,它给了我这个错误: SCRIPT5007: Unable to set property 'href' of undefined or null reference
它指向周围某处的代码
<?php if (Mage::getStoreConfig('Moii_Pinterest_Config/configuration/Moii_Pinterest_Price') == 1) { ?>
var pinit_desc = desc + ' - ' + window['pinit_price_'+params.colour];
<?php } ?>
var pinit_href = $$('.product-share')[0].firstElementChild.href;
?><