jquery兼容ie8

  1. <!--[if lte IE 6]> <![endif]--> IE6及其以下版本可见
  2. <!--[if IE 8]> <![endif]--> IE8可见
  3. jquery从2.0版本开始不兼容IE8了
    可这样写:
<!--[if  IE  8]> 
<script src='jquery/jquery-1.9.1.min.js'></script>
<![endif]-->
<script src='jquery/jquery-3.3.1.min.js'></script>

另外,对于swiper插件来说,swiper2.0兼容IE8

猜你喜欢

转载自blog.csdn.net/qq_40713392/article/details/85145502