以下带有 Jquery 的代码不起作用。该部门没有淡出。请帮助我
<html>
<head>
<style type="text/css">
#fade{ background-color:#abc123; width:200px; height:30px; padding:3px; }
</style>
<SCRIPT type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></SCRIPT>
<script type="text/javascript">
$("#animate").click(function() {
$("#fade").animate(
{"width": "200px"},
"fast");
});
</script>
</head>
<body>
<div id="fade">Animate Text</div>
</body>
</html>