哪位高人指点下我的代码为何移动无效呢?非常感谢
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery动画特效</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
</head>
<body>
<input id='l' type='button' value='左移'><br>
<input id='r' type='button' value='右移'>
<span id='tip'></span>
<script>
$(function () {
$("#l").bind('click',function(){
$(this).animate({
left: "+=100px"
},
3000, function () {
$("#tip").html("执行左移完成!");
});
});
$("#r").bind('click',function(){
$(this).animate({
right: "+=80px"
},
3000, function () {
$("#tip").html("执行右移完成!");
});
});
});
</script>
</body>
</html>