TA的每日心情 | 奋斗 2019-10-18 11:20 |
---|
签到天数: 678 天 [LV.9]以坛为家II
|
本想弄个判断页面载入时间,过长就不加载特效的JavaScript代码,不过还是有点缺陷,这里就写下来吧。
IE浏览器用document.execCommand("Stop"),Chrome和Firefox用window.stop()(顺便说下,这是JavaScript标准中定义的方法),写在一起就是下面的方式了:- <html>
- <body>
- 这里可以显示
- <script type="text/javascript">
- if (window.stop)
- window.stop();
- else
- document.execCommand("Stop");
- </script>
- 这里不能显示
- </body>
- </html>
- 当然,你也可以将JavaScript代码简写为:
- window.stop ? window.stop() : document.execCommand("Stop");
复制代码 很奇怪的是,如果写成下面的代码,Firefox不会停止载入:- <html>
- <body>
- 这里可以显示
- <script type="text/javascript">
- document.execCommand("Stop");
- if (window.stop)
- window.stop();
- </script>
- 这里不能显示
- </body>
- </html>
复制代码 此外,这种方式可以用来防止免费空间显示广告和被挂马。
一般只要把这段代码放在</html>后就行了。如果广告是在</body>前添加的,那就放在</body>前。
|
|