我在jQuery中有以下代碼,它爲div div頂點設置了動畫。如何在jquery動畫中設置最大的margin-top?
如何設置它,以便一旦邊距頂部等於900px,禁用點擊事件?
$("#tmbUp").click(function(){
$("#tmbHolder").animate({"marginTop": "-=100px"}, "slow");
});
$("#tmbDown").click(function(){
$("#tmbHolder").animate({"marginTop": "+=100px"}, "slow");
});
檢查'bind/unbind' jquery方法 – anson