-1

单击“添加到购物车”时,默认的 form.js 文件似乎出错。这会阻止数量字段的值正确传递。Magento 用默认值代替。此脚本不会出错,并且数量字段在其他浏览器中也可以正常工作。

此外,当我切换回默认主题时,添加到购物车按钮可以正常工作。关于我应该从哪里开始的任何想法。这里有什么不适合 IE8 的吗?我没有修改任何添加到购物车的功能,也没有修改 form.js 文件。

更新:我有一个 browserstack 帐户。调试显示 VarienForm 未定义,这会引发两个“'productAddToCartForm' is null or not an object”错误。定义 VarienForm 的 Form.js 被加载到标题中,因此它应该可用于内联 JS。

因为您看不到行号,所以这里是有问题的行:

this.regionSelectEl.options.add(option);

这是功能:

update: function()
{
    if (this.regions[this.countryEl.value]) {
        var i, option, region, def;

        def = this.regionSelectEl.getAttribute('defaultValue');
        if (this.regionTextEl) {
            if (!def) {
                def = this.regionTextEl.value.toLowerCase();
            }
            this.regionTextEl.value = '';
        }

        this.regionSelectEl.options.length = 1;
        for (regionId in this.regions[this.countryEl.value]) {
            region = this.regions[this.countryEl.value][regionId];

            option = document.createElement('OPTION');
            option.value = regionId;
            option.text = region.name.stripTags();
            option.title = region.name;

            if (this.regionSelectEl.options.add) {
                this.regionSelectEl.options.add(option); //***this is line 266***
            } else {
                this.regionSelectEl.appendChild(option);
            }

            if (regionId==def || (region.name && region.name.toLowerCase()==def) ||
                (region.name && region.code.toLowerCase()==def)
            ) {
                this.regionSelectEl.value = regionId;
            }
        }

        if (this.disableAction=='hide') {
            if (this.regionTextEl) {
                this.regionTextEl.style.display = 'none';
            }

            this.regionSelectEl.style.display = '';
        } else if (this.disableAction=='disable') {
            if (this.regionTextEl) {
                this.regionTextEl.disabled = true;
            }
            this.regionSelectEl.disabled = false;
        }
        this.setMarkDisplay(this.regionSelectEl, true);
    } else {
        if (this.disableAction=='hide') {
            if (this.regionTextEl) {
                this.regionTextEl.style.display = '';
            }
            this.regionSelectEl.style.display = 'none';
            Validation.reset(this.regionSelectEl);
        } else if (this.disableAction=='disable') {
            if (this.regionTextEl) {
                this.regionTextEl.disabled = false;
            }
            this.regionSelectEl.disabled = true;
        } else if (this.disableAction=='nullify') {
            this.regionSelectEl.options.length = 1;
            this.regionSelectEl.value = '';
            this.regionSelectEl.selectedIndex = 0;
            this.lastCountryId = '';
        }
        this.setMarkDisplay(this.regionSelectEl, false);
    }
4

1 回答 1

0

区域选择只能在购物车或结帐时触发。检查您的模板是否在skin/frontend/your_theme/js. 我认为您的模板是为不同的 Magento 版本制作的,因此您的 phtml 文件中的 CSS 选择器不再适合 JS。因此,您必须使用匹配 JS 文件或将您的产品模板与基本模板中的模板进行比较并调整 CSS 类。

于 2013-06-12T10:31:03.303 回答