🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
ie8 ~~~ <script type="text/javascript" src="<%=path%>/js/jquery-3.1.1.min.js"></script> <!--[if IE 8]> <script type="text/javascript" src="__PUBLIC__/home/js/jquery-1.9.1.min.js"></script> <script type="text/javascript" src="__PUBLIC__/home/js/jquery-migrate-1.1.0.js"></script> <![endif]--> ~~~ ie8及以下: ~~~ <script type="text/javascript" src="<%=path%>/js/jquery-3.1.1.min.js"></script> <!--[if lt IE 8]> <script type="text/javascript" src="__PUBLIC__/home/js/jquery-1.9.1.min.js"></script> <script type="text/javascript" src="__PUBLIC__/home/js/jquery-migrate-1.1.0.js"></script> <![endif]--> ~~~ 其他兼容 ~~~ <!--[if !IE]><!--> 除IE外都可识别 <!--<![endif]--> <!--[if IE]> 所有的IE可识别 <![endif]--> <!--[if IE 6]> 仅IE6可识别 <![endif]--> <!--[if lt IE 6]> IE6以及IE6以下版本可识别 <![endif]--> <!--[if gte IE 6]> IE6以及IE6以上版本可识别 <![endif]--> <!--[if IE 7]> 仅IE7可识别 <![endif]--> <!--[if lt IE 7]> IE7以及IE7以下版本可识别 <![endif]--> <!--[if gte IE 7]> IE7以及IE7以上版本可识别 <![endif]--> <!--[if IE 8]> 仅IE8可识别 <![endif]--> <!--[if IE 9]> 仅IE9可识别 <![endif]--> ~~~  注意: **IE8,不打开控制台提示页面上有错误,打开控制台运行正常 : **js里面有使用console.log()进行调试,去除即可