我只想做的就是;如果浏览器少于Internet Explorer 8,请找到并删除$(document).foundation();
<!--[if IE 8]>
//code here
<![endif]-->
答案 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]-->