当产品图像" (a.k.a. heroImg
)首先显示在我的ProductTemplate
TVML布局中,背景会自动设置为图像的模糊副本。
当我要求时,图像本身正在更新:
function changeHeroImage(incomingString) {
if (incomingString) {
var theHero = myDoc.getElementsByTagName("heroImg").item(0);
theHero.setAttribute('src', incomingString);
}
}
..但不是背景;布局保留原始图像的背景。有关如何强制后台更新,以反映当前图像的任何想法吗?