我在 jQuery 中有以下代码,它为 div marginTop 设置动画。
如何设置它,以便一旦边距顶部等于 900px,禁用点击事件?
$("#tmbUp").click(function(){
$("#tmbHolder").animate({"marginTop": "-=100px"}, "slow");
});
$("#tmbDown").click(function(){
$("#tmbHolder").animate({"marginTop": "+=100px"}, "slow");
});