为什么运行不了
<!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>
<style>
div{
background:orange;
width:100px;
height:100px;
position:absolute;
left:200px;
top:200px;
}
</style>
</head>
<body>
<input type="button" value="向左移" id="left" />
<input type="button" value="向右移" id="right" />
<div></div>
<script type="text/javascript">
$(function (){
$("#left").bind("click",function(){
$("div").animate({left:'-=50px';},800)
})
$("#right").bind("click",function (){
$("div").animate({left:'+=50px'},800)
})
})
</script>
</body>
</html>