问题描述
with(window.event){if(srcElement.getAttribute("Author")==null&&srcElement!=inputmodulename){ModuleInfoDiv.style.display="none";}}这是我的代码,在IE中是好使的,但是在火狐浏览器和360浏览器都不好使,哪位大神可以帮忙啊!多谢
解决方案
解决方案二:
1.你要查其他浏览器event的属性的应用2.查其他浏览器是否有event.srcElement属性大致可以这样改function(event){if(window.event){with(window.event){if(srcElement.getAttribute("Author")==null&&srcElement!=inputmodulename){ModuleInfoDiv.style.display="none";}}}else{with(event){//自己学习吧}}}
时间: 2025-01-02 03:04:52