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.
我们都知道IE在打开html和渲染css文件方面有很多问题。
我希望 IE 在打开页面时不显示任何内容。
我怎样才能做到这一点?
您可以使用条件评论并清除您的页面!
<!--[if IE]> <script> window.onload = function() { document.body.innerHTML = 'Please choose a better browser!'; } </script> <![endif]-->
你也可以使用这个jQuery 插件。