IE7条件 - 删除脚本

时间:2014-02-14 03:16:46

标签: html internet-explorer conditional

我只想做的就是;如果浏览器少于Internet Explorer 8,请找到并删除$(document).foundation();

<!--[if IE 8]>
   //code here
<![endif]-->

1 个答案:

答案 0 :(得分:0)

只需删除这样的插件,例如

<!--[if lt IE 8]><!-->
<script>
  delete $.fn.foundation;
</script>
<!--<![endif]-->

可能会导致各种各样的问题,通常是个坏主意 - see here for why

相反,如果浏览器是IE8 +或其他浏览器,只需加载foundation()插件/相关脚本:

<!--[if gte IE 8]><!-->
<script src="/js/foundation.min.js"></script>
// Other related scripts etc...
<!--<![endif]-->