我尝试在我的网站上使用 jQuery,但它似乎不起作用。我认为我做错了什么,所以我尝试将我完成的代码学院课程复制到测试站点上。这是代码:
HTML
<!DOCTYPE html>
<html>
<head>
<title>Test Codecademy Lesson</title>
<link rel='stylesheet' type='text/css' href='stylesheet.css'/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type='text/javascript' src='script.js'></script>
</head>
<body>
<img src="http://i1061.photobucket.com/albums/t480/ericqweinstein/elevator.png"/>
</body>
</html>
CSS
body {
margin: 0;
padding: 0;
}
img {
position: absolute;
}
Javascript/jQuery
$(document).ready(function() {
$('img').animate({top:'+=100px'},1000)
});
有人能告诉我为什么这段代码不起作用吗?我的浏览器是 Chrome,我有最新版本。