我想做一個簡單的jQuery教程,但它不會工作。簡單的jQuery教程不會工作
<html>
<head>
<title></title>
<script type="text/javascript" src="jquery-1.3.2.js">
$(function() {
$('a').click(function() {
$('#box').fadeOut();
});
});
</script>
<style type="text/css">
#box
{ background: red;
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<div id="box" ></div>
<a href="#">Click Me</a>
</body>
</html>
我已經複製並粘貼jQuery的文件名:jQuery的1.3.2
我看不出有什麼不好?我正在使用Firefox。
告訴我們發生了什麼事。沒有?來自瀏覽器的錯誤?意外的事情? – 2009-04-29 09:11:59