我是 Jquery 的新手并试图学习它,我有以下代码,但由于某种原因我的图像没有加载。当我通过我的运行命令运行相同的链接时,图像会弹出。当我通过 firebug 进行调试时,它说无法加载给定的 URL
<!DOCTYPE html>
<html><head>
<title>Furry Friends Campaign</title>
<link rel="stylesheet" type="text/css" href="c:/jquery/Chapter-1/begin/styles/my_style.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<div id="clickMe">Show Me the Furry Friend of the Day</div>
<div id="picframe">
<img src="c:/jquery/chapter-1/begin/images/img_0229.jpg">
</div>
<script src="scripts/jquery-1.6.2.min.js"></script>
<script>
$(document).ready(function(){
$("#clickMe").click(function() {
$("img").fadeIn(1000);
$("#picframe").slideToggle("slow");
});
});
</script>
</body>
</html>