这是我的代码:
<html>
<head>
<script type="text/javascript" src="E:\Priya\Animation\Horse Animation\js\jquery-1.4.2.min.js"></script>
<script>
$(document).ready(function(){
alert('welcome');
$("#lion").animate({left: '250px'});
});
</script>
</head>
<body>
<div id="lion" style="width:213px; height:295px; background:yellow;"></div>
</body>
</html>
我不知道代码哪里出错了。警报正在工作,但动画不起作用。