我是 JQuery 的超级初学者,但我真的很喜欢玩它。我正在制作一个页面,它开始变慢/出现故障,我还不知道如何使用回调,我认为这会很有帮助。
我正在使用的代码如下所示:
$(".navHome").click(function(){
var div=$(".navHome");
div.animate({left:'190px'},"fast");
var div=$(".content");
div.animate({width:'700px'},"slow");
div.animate({height:'250px'},"slow");
$(".content").load("home.html");
var div=$(".xIcon");
div.animate({width:'20px'},"slow");
div.animate({height:'20px'},"slow");
});
所以我点击一个div“navHome”,它移动并且“内容”div展开/加载。但它开始看起来波涛汹涌。我认为回调是我需要的,但不确定。