0

element.style.display = 'none';在magento 1.7的1931行的prototype.js中遇到了这个错误

有人请尽快解决这个问题。

4

1 回答 1

0

该行号是指该hide()方法。但是我认为您使用的是旧版本的 PrototypeJS,因为该行在当前版本(1.7.1)中的行号不同。

不管您是否尝试hide()在当前 DOM 中不存在的元素上运行该方法。

例如

$('missingid').hide();
//There is no element on the page with the id "missingid" so this will fail 

仔细检查您尝试隐藏的 id 以及检查您已加载的 PrototypeJS 版本。

于 2013-06-10T15:12:42.160 回答