http://jsfiddle.net/4UbKe/3/.css()的Jquery相對值不起作用?
請檢查小提琴,看看它究竟爲什麼不起作用。我使用jQuery 1.6
這裏的documentation說什麼:
在jQuery 1.6的,的.css()接受類似.animate相對值()。
不起作用:
$('#block').css('top','+=100');
作品:
$('#block').css('top',function(){ return $(this).css('top').replace('px','')+100+'px'; });
我遇到了同樣的問題。你可以稍微簡化你的JS $('#block')。css('top',parseInt($('#block').css('top'))+ 100); ' –
謝謝我會投你的回答 – hamahama