1

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;
?><
4

1 回答 1

1

由于这个问题中的解决方案firstElementChild 在 Internet Explorer 7 中不起作用......我有哪些选择?. 你应该更换:

var pinit_href = $$('.product-share')[0].firstElementChild.href;

var pShare = $$('.product-share')[0];
var pinit_href = (pShare.firstElementChild || pShare.children[0] || {}).href;

希望这有帮助。

于 2013-05-16T18:20:13.333 回答