jquery

<html>

<head>

<scripttype="text/javascript"src="/jquery/jquery.js"></script>

<scripttype="text/javascript">

$(document).ready(function(){

$(".flip").click(function(){

$(".panel").slideToggle("slow");

});

});

</script>

<styletype="text/css">

div.panel,p.flip

{

margin:0px;

padding:5px;

text-align:center;

background:#e5eecc;

border:solid1px#c3c3c3;

}

div.panel

{

height:120px;

display:none;

}

</style>

</head>

<body>

<divclass="panel">

jquery

jquery

</div>

请点击这里

</body>

</html>

相关推荐