$("document").ready(function(){
$(this).css("position", "relative");
$(this).click(function(){
$("img").animate({top: 500}, 2000, "easeInQuad", function(alert("DONE!");){});
});
});
此代码给出了错误Uncaught TypeError: jQuery.easing[this.easing] is not a function
。我不知道发生了什么。
答案 0 :(得分:2)
我发现了两个错误。
1)改变
$("document")
通过
$(document)
2)该属性是jqueryui easeInQuad(https://jqueryui.com/easing/)。添加库jqueryui
答案 1 :(得分:1)
语法错误。一定是
function() { alert("DONE!"); }