同样的JS写法,为啥只有IE9模式正常?
使用 IE F12 开发者工具,选择不同的“文档模式” 从IE7 - IE9,只有IE9正常!
<!DOCTYPE html> <html> <script type= "text/javascript" > if (console) document.write( "console 正常" ); else document.write( "console 异常" ); if (!window.console){ var console={ log: function (msg){} } } </script> </html> |
只要将代码修改为如下,即可解决问题,在所有模式下都正常!。但是终究没有明白,上面的写法的问题本源!
if (!window.console){ window.console={ log: function (msg){} } } |
作者:Asion Tang
凡是没有注明[转载]的文章,本Blog发表的文章版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。