0
我只是想做的是;如果瀏覽器是小於Internet Explorer 8中找到並刪除$(document).foundation();
IE7條件 - 刪除腳本
<!--[if IE 8]>
//code here
<![endif]-->
我只是想做的是;如果瀏覽器是小於Internet Explorer 8中找到並刪除$(document).foundation();
IE7條件 - 刪除腳本
<!--[if IE 8]>
//code here
<![endif]-->
簡單地刪除這樣的插件,例如
<!--[if lt IE 8]><!-->
<script>
delete $.fn.foundation;
</script>
<!--<![endif]-->
可能會導致各種問題,通常是一個壞主意 - see here for why。
相反,只需加載foundation()
插件/相關的腳本,如果瀏覽器IE8是+或不同的瀏覽器:
<!--[if gte IE 8]><!-->
<script src="/js/foundation.min.js"></script>
// Other related scripts etc...
<!--<![endif]-->