Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我element.style.display = 'none';在magento 1.7的1931行的prototype.js中遇到了这个错误
element.style.display = 'none';
有人请尽快解决这个问题。
该行号是指该hide()方法。但是我认为您使用的是旧版本的 PrototypeJS,因为该行在当前版本(1.7.1)中的行号不同。
hide()
不管您是否尝试hide()在当前 DOM 中不存在的元素上运行该方法。
例如
$('missingid').hide(); //There is no element on the page with the id "missingid" so this will fail
仔细检查您尝试隐藏的 id 以及检查您已加载的 PrototypeJS 版本。