为什么button只有第一次按有效果,若想重复使用该怎么改
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery动画特效</title>
<style>
#div{
width:100px;
height:100px;
background-color:red;
margin:0 auto;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
</head>
<body>
<div id="div"></div>
<button id="btn1" type="button">
向左
</button>
<button id="btn2" type="button">
向右
</button>
<script>
$(function(){
$("#btn1").click(function(){
$("#div").animate({
right:"+=200px"
},3000)
})
})
$(function(){
$("#btn2").click(function(){
$("#div").animate({
left:"+=200px"
},3000)
})
})
</script>
</body>
</html>