JQuery的animate方法left和top屬性注意的問題

不淨之心發表於2013-04-09
HTML程式碼:
<div class="test1" style="background: #98bf21;position: relative; ">a</div>


Javascript程式碼:
$(".test1").animate({
height : 140,
left: 200,
width:300,
top:300
}, "slow");


以為animate設定left後者top的屬性,所以應該提供position這個樣式值,否則無效.

今天試了很久,才發現這個問題,哈.....

相關文章