我正在将我的JQuery V1.9.1升级到V3.0,我正在使用“jquery migrate 3.0”。 我在控制台中收到此警告:
JQMIGRATE: easing function "jQuery.easing.swing" should use only first argument
当我搜索警告消息的来源时,我找到了这段代码:
$('#cleanTable').find("tbody").fadeIn(200, function() {
$('#cleanTable').toggle();
$('#cleanTable').toggle();
});
如何重写此代码以获取警告消息?
我找到了this link,但我无法弄清楚如何修复它?
我对此代码也有同样的警告:
$("#" + p_divId).hide(0, function() {
$("#" + p_divId + 'Mask').remove();
$("#" + p_divId).children().remove();
..........
}); // end .hide
有关详细信息,您可以看到第二个代码的控制台跟踪:
console.trace()
migrateWarn @ jquery-migrate-3.0.0.js:64
jQuery.Tween.run @ jquery-migrate-3.0.0.js:324
tick @ jquery.js
jQuery.fx.timer @ jquery.js
Animation @ jquery.js
doAnimation @ jquery.js
dequeue @ jquery.js
(anonymous function) @ jquery.js
each @ jquery.js
each @ jquery.js
queue @ jquery.js
animate @ jquery.js
jQuery.fn.(anonymous function) @ jquery.js
$.fn.extend.hide @ jquery.ui.js
Hide0 @ (index):1663
onclick @ (index):1647
答案 0 :(得分:1)
最后。我找到了问题的根源。
当我收到此错误时,我正在使用jQuery Easing Plugin (version 1.3)
。
在这个插件中,我们使用了多个函数和多个参数,例如:easeInQuad: function (x, t, b, c, d) {...
这就是我的问题的根源。
我删除了此插件,但我没有再发出此警告。
答案 1 :(得分:1)
我认为这里的问题是,使用jQuery 3,缓动函数所期望的额外参数现在已被弃用。请阅读https://jquery.com/upgrade-guide/3.0/#deprecated-additional-easing-function-parameters了解详情。
如果您想继续使用额外的宽松功能,请访问https://github.com/gdsmith/jquery.easing并查看https://github.com/gdsmith/jquery.easing/blob/master/jquery.easing.js以获取更新的版本。
答案 2 :(得分:0)
只需使用jquery缓动1.4.1,因为它将解决您的问题https://github.com/gdsmith/jquery.easing