おやすみ:私は#panel
を表示を表示し、.close
#panel
を表示し、私のコードを修正することができますをクリックしますか?ありがとう。私のjqueryトグルを修正してください
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".slide").mouseover(function(){
$("#panel").slideToggle("slow");
});
$(".close").click(function(){
$("#panel").slideToggle("slow");
});
});
</script>
<style type="text/css">
body {
margin: 0 auto;
padding: 0;
width: 1024px;
height:100%;
}
#wrap {position:absolute;bottom:0px;}
#panel {
background: #f60;
width:600px;
height: 200px;
display: none;
}
.slide {
width:600px;
height: 20px;
background-color:#F06;
}
.close{float:right;height:20px;width:20px;background-color:#000;}
</style>
</head>
<body>
<div id="wrap">
<div class="slide"> <div class="close"> </div></div>
<div id="panel">
<!-- some content -->
</div>
</div>
</body>
</html>
私は間違った 'slideToggle'を使用します。ありがとうございます。 – cj333