代码哪里错了,运行不起,请高手指导一下
代码哪里错了,运行不起,请高手指导一下
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery动画特效</title>
</head>
<style>
div{position:relative;}
</style>
<body>
<div>hello!</div>
<button id="left">左移</button>
<button id="right">右移</button>
<span></span>
</body>
<script>
$(function(){
$("#left").bind("click",function(){
$("div").animate({
left:"+=50px"
},3000,function(){
$("span").html("left");
})
});
$("#right").bind("click",function(){
$("div").animate({
right:"+=50px"
},3000,function(){
$("span").html("right");
})
});
})
</script>
</html>