哪位帮我看看哪里错了
<body>
<div>hi</div>
<input type="button" value="左移" id="left"></input>
<input type="button" value="右移" id="right"></input>
<script type="text/javascript">
$(function () {
$("#left").bind("click",function(){
$("div").animate({
left:"+=50px"},2000,function (){
$(this).html("left hi");
});
});
$("#right").bind("click",function(){
$("div").animate({
right:"+=50px"},2000,function (){
$(this).html("right hi");
});
});
});
/*$(this).animate({
height:"+=60px",
width:"+=60px"
},2000,function () {$("p").html("OK")});*/
</script>
</body>