即使看起来很容易,我也做不到。
我在 div 中有一个图像,我应该上下移动图像而不是整个 div。
HTML
<div>
<img src="Image/Scope.png" id="indImage" style="height:auto; max-height:80%; width:auto; max-width:90%;" />
</div>
Javascript
$("#moveUp").on('click',function() {
alert($('#indImage').offset());
if(wind_moveup_click != 7){
$('#indImage').animate({
marginTop : "-=2px"
});
});
但是图像没有向上移动
我在做什么错误?
谢谢:)