我剛開始使用jquery。我下載的jQuery「http://code.jquery.com/jquery-1.4.2.min.js」從jquery.com..accessed在我的HTML文件..不能使用jquery
<html>
<head>
<title> Jquery fundentals</title>
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<style type="text/css">
#box{
background: red;
width: 300px;
height: 300px;
}
</style>
<script type="text/javascript">
$(function(){
$('a').click(function(){
$('box').fadeOut();
});
});
</script>
</head>
<body>
<div id="box"> </div>
<a href="#"> Click Me! </a>
</body>
</html>
仍然無法看到瀏覽器中的效果?
也試過「http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js」......但沒有用 可以解釋一下這個問題嗎? 我試過三種瀏覽器。谷歌瀏覽器,Mozilla和Internet Explorer。
您在文章中缺少一些代碼。 – spinon 2010-07-01 09:36:42