0

我已经使用本教程来实现这一点。但是当我更改选项时,我遇到了这个错误:

Uncaught TypeError: Cannot set property 'src' of null configurable.js:159
Product.Config.configureElement configurable.js:159
Product.Config.configure configurable.js:127
(anonymous function) prototype.js:391
_createResponder.responder prototype.js:5598

有人可以帮我吗?Magento 版本。1.7.0.2

或者你能告诉我任何其他解决方案来实现这一点吗?非常感谢你。

4

1 回答 1

2

假设您的大多数产品都有与之关联的图像,并且您的图像有一个 id

  <img id="image" .. />

使用chrome调试工具或firebug for firefox试试

console.log(assocIMG); // should return all products image url
console.log(assocIMG[productNo]);  // should return image url

(围绕行 $('image').src = assocIMG[productNo];)

于 2013-02-12T15:43:25.820 回答