最近推出了一个 Magento 商店,主页上有一个图像滑块。在 Firefox、Chrome 等中完美运行,但像往常一样,IE9 引起了问题 - 奇怪的是,这在 IE 中运行,所以不确定是什么导致它停止运行。
就目前而言,在 IE9 中,它无法检测滑块中的图像范围(仅显示序列中的第一个),因此不会在任何地方滑动。
在 IE9 开发者模式下,错误是:-
=======#
SCRIPT438: Object doesn't support property or method 'dispatchEvent'
prototype.js, line 5734 character 7
代码片段:
5733 if (document.createEvent)
5734 element.dispatchEvent(event);
5735 else
5736 element.fireEvent(event.eventType, event);
=======#
和...
=======#
SCRIPT5007: Unable to get value of the property 'display': object is null or undefined
prototype.js, line 2542 character 5
代码片段:
2538 else if (Prototype.Browser.IE) {
2539 Element.Methods.getStyle = function(element, style) {
2540 element = $(element);
2541 style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize();
2542 var value = element.style[style];
2543 if (!value && element.currentStyle) value = element.currentStyle[style];
=======#
在 Magento (1.6.2.0) 中,我们使用的是最新版本的 prototype.js (1.7)。
我们还在头部添加了 IE 标准模式...
<!-- Enable IE8 Standards mode -->
<meta http-equiv="X-UA-Compatible" content="IE=8" >
类似的错误确实出现在 Firefox 和 Chrome 中,但它们似乎不会影响功能。
请任何人都可以看看并建议问题可能出在哪里,因为我不确定要解决什么。有问题的网站是http://www.showermania.co.uk/
提前致谢。