我一直在努力摆脱IE中的错误,并且“几乎”无济于事。
我只是尝试加载jquery 1.2.6而不是1.3.2,并且错误已经消失(尽管现在网站明显变慢)。
但是,我怀疑我可能会遇到这种解决方案。是否有基于浏览器的方式来包含类似于css条件语句的脚本?
如果需要,我可以在服务器端进行,但客户端会很好。
答案 0 :(得分:3)
您可以使用Conditional Comments仅包含IE脚本。
<!--[if IE]>
<script type="text/javascript">
/* Do Stuff */
</script>
<![endif]-->
从IE中排除脚本块:
<![if !IE]>
<script type="text/javascript">
/* Do Stuff */
</script>
<![endif]>