<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="/TestJquery/jq/jquery-1.3.2.js"></script>
<title>Insert title here</title>
<style type="text/css">
.head{
color:red;
font-size:30px;
font-weight:bold;
background-color: yellow;
}
.content{
display: none;
}
</style>
</head>
<body>
<div id="panel">
<h6 class="head">什么事Jquery</h6>
<div class="content">
jaueryshi是一个优秀的javascript库.....
</div>
</div>
</body>
<script type="text/javascript">
$(function(){
$("#panel h6.head").hover(function(){
$(this).next("div.content").show();
},function(){
$(this).next("div.content").hide();
});
});
</script>
</html>
$(function(){
$("#panel h6.head").bind("mouseover",function(){
$(this).next("div.content").show();
});
$("#panel h6.head").bind("mouseout",function(){
$(this).next("div.content").hide();
});
});