如何从IE7以外的所有浏览器中删除js文件?

How can i remove a js file from all browsers others than IE7

本文关键字:浏览器 删除 js 文件 IE7      更新时间:2023-09-26

如何在页面加载时使用javascript删除javascript文件,只让脚本在IE7中运行。该脚本不能在chrome, opera, firefox上运行。

您可以使用条件注释:

<!--[if IE 7]>
<script src="your/javascript/ie7only/file.js"></script>
<![endif]-->

您可以将此代码放置在普通<script>标签的任何地方,只有IE7会处理它。