args集合{now,fx} 中 args[1] ==fx; progress是一个进度概念, 所以 args[1]的值为0~1;
2016-11-07
已采纳回答 / yude725
做出来淘宝或者天猫的效果即可!祝你早日修炼成妖!
.toggle({
duration : 1000,
complete : function(){
alert("abc");
}
})
duration : 1000,
complete : function(){
alert("abc");
}
})
2016-11-04
$(".div1").click(function(){
$(this).hide(2000, function(){
alert("2000ms动画完毕");
})
})
$(this).hide(2000, function(){
alert("2000ms动画完毕");
})
})
2016-11-04
$(".div1").click(function(){
$(this).hide({
duration : 3000,
complete : function(){
alert("执行3000ms动画完毕!")
}
})
})
$(this).hide({
duration : 3000,
complete : function(){
alert("执行3000ms动画完毕!")
}
})
})
2016-11-04
alert('值的长度:' + $('#results2').val().trim().length)
2016-11-04