jquery migrate是什么,jQuery Migrate是应用迁移辅助插件,是用于高级版本兼容低级版本辅助插件。下面介绍一下jQuery Migrate.js插件作用及使用实例详解。
例如jQuery版本用的是1.x,计划升级到3.x,就可以在页面删除1.x版本,换成3.x版本,如果有脚本错误,就引入jquery-migrate插件用于兼容低版本,同时也显示低版本方法替换成新版本方法的方案。
jQuery migrate(转移、过度) jquery 升级后新旧代码不兼容问题,此包就是解决此问题的。 就是把不支持的函数再写出来支持下。
jQuery 版本之间有区别。比如1.9版本对于 live()
,die()
,toggle()
,sub()
,$.browser
等等都已经不支持了。 在不改变你网站代码的同时,要使用 1.9 之后的版本,你需要使用 jQuery migrate
(转移、过度),
官方网站:https://github.com/jquery/jquery-migrate
引用代码如下:
<script src="http://code.jquery.com/jquery-1.11.3.js"></script> <script src="http://code.jquery.com/jquery-migrate-1.4.1.js"></script> 如果您的项目是使用JQuery 3.0的版本,请使用以下代码: <script src="https://code.jquery.com/jquery-3.0.0.js"></script> <script src="https://code.jquery.com/jquery-migrate-3.0.0.js"></script>
实例:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>test</title> <script type="text/javascript" src="jquery-1.6.1.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ alert($("li").size()); }); }); </script> </head> <body> <button>测试按钮</button> <ul> <li>Coffee</li> <li>Milk</li> <li>Soda</li> </ul> </body> </html>
点击按钮,弹出“3”。
把
<script type="text/javascript" src="jquery-1.6.1.js"></script>
替换成
<script type="text/javascript" src="jquery-3.3.1.js"></script>
这时点击按钮,在Chrome浏览器开发者窗口中显示脚本错误:
在页面再引入
<script src="jquery-migrate-3.0.1.js"></script>
点击按钮,正常弹出“3”。同时提示size方法被弃用使用length代替:
jQuery.fn.size() is deprecated and removed; use the .length property
把 $("li").size()
改成$("li").length
,移除jquery-migrate-3.0.1.js
,点击按钮,弹出“3”。迁移方法完成。