IT界小白的's Blog

jQuery 的兼容性引入方式

获取 jQuery

CDN方式

版本:3.4.1
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
版本:1.12.4
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>

jQuery 的兼容性引入方式

<!--chrome firefox Safari opera IE9+ -->
<!--[if gt IE 8]> -->
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
<!-- <![endif]-->

<!--IE8以及以下-->
<!--[if lte IE 8]>
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<![endif]-->

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »