1

我有一个关于 jquery 在从下拉列表中选择时更改值的问题。

这个 jquery 基于 magento Simple Configurable Product 扩展。

这是来源:

$childProducts[$productId]["productDate"] = $product->getAttributeText('preorderdate');

返回 var spConfig = new Product.Config({"productDate":"","productDate":"November 2013"})

Jquery 在选择时更改 div 文本。

Product.Config.prototype.updateProductDate = function(productId) {
    var productDate = this.config.productDate;
    if (productId && this.config.childProducts[productId].productDate) {
        productDate = this.config.childProducts[productId].productDate;
    }
// if(productDate.lenght === 0)
    if(productDate === ''){
    $$('p.availability.in-stock span').each(function(el) {
        el.innerHTML = 'Is in stock';
    })
    $$('p.availability.in-stock span').each(function(el) {
        el.innerHTML = productDate;
    });
};

问题是在选择没有值的选项时仍然显示空白值并且没有返回el.innerHTML = 'Is in stock';

哪里错了?

任何帮助表示赞赏。

我自己找到了解决方案,括号不在你的位置。

 Product.Config.prototype.updateProductDate = function(productId) {
        var productDate = this.config.productDate;
        if (productId && this.config.childProducts[productId].productDate) {
            productDate = this.config.childProducts[productId].productDate;
        }
        $$('p.availability.in-stock span').each(function(el) {
        el.innerHTML = productDate;
        });
    if(productDate === ''){
     $$('p.availability.in-stock span').each(function(el) {
            el.innerHTML = 'This is in stock';
        });
}
};
4

1 回答 1

0

撇开问题不谈,如果条件关闭,您{在哪里?

 Product.Config.prototype.updateProductDate = function(productId) {
        var productDate = this.config.productDate;
        if (productId && this.config.childProducts[productId].productDate) {
            productDate = this.config.childProducts[productId].productDate;
        }
    // if(productDate.lenght === 0)
        if(productDate === ''){    //WHERE DOES THIS BRCKET CLOSED ??
        $$('p.availability.in-stock span').each(function(el) {
            el.innerHTML = 'Is in stock';
        })
        $$('p.availability.in-stock span').each(function(el) {
            el.innerHTML = productDate;
        });
    };
于 2013-02-01T20:47:00.097 回答