<!DOCTYPE html>
<html>
<head>
<div id="header">
<center><button type="button" onclick="JavaScript:prompt('so far sogood')">
click</button></center>
</div>
<style type="text/css">
#one{width:100%; height:100px;background-color:red;}
#two{width:100%; height:100px;background-color:green;}
#header{width:100%; height:100px;background-color:yellow;}
</style>
<script type="text/javascript">
$(document).ready(function(
{
$('.one').mouseenter(function()
{
$(this).fadeOut('slow');
});
$('.one').mouseleave(function()
{
$(this).fadeIn('fast');
});
});
</script>
</head>
<body bgcolor="black">
<div id="one"><center>HELLO</center></div>
<div id ="two">hello</div>
</body>
看起来我的问题是我的 jquery 行在$(document)
发生后立即开始。显然,在这发生之前我没有做正确的事情。我是 jquery 的新手,通常我使用外部 css 页面,所以会出现不同的格式