<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 "/>
<title> Untitled Document </title>
<script src= "Jquery_last.js" type= "Text/javascript" ></script>
<script type= "Text/javascript" >
$ (document). Ready (function () {});
function Hiden () {
$ ("#divObj"). Hide ();//hide () function, implement hidden, parentheses can also take a time parameter (in milliseconds) such as Hide (2000) to 2000 milliseconds of speed hidden, you can also take slow,fast
}
function Slidetoggle () {
$ ("#divObj"). Slidetoggle (2000);//curtain effect of the switch, point to receive, click to open, parameters can be no, parameter description ibid.
}
Function Show () {
$ ("#divObj"). Show ();//display, parameter description ibid.
}
function Toggle () {
$ ("#divObj"). Toggle (2000);//display hidden switch, parameters can be no, parameter description ibid.
}
function Slide () {
$ ("#divObj"). Slidedown ();//Curtain effect unfold
}
</script>
<body>
<input type= "button" value= "Hide" onclick= "Hiden ()"/>
<input type= "button" value= "Show" onclick= "Show ()"/>
<input type= "button" value= "Curtain effect display 2" onclick= "Slide ()"/>
<input type= "button" value= "Curtain effect Toggle" onclick= "Slidetoggle ()"/>
<input type= "button" value= "Hide display effect Toggle" onclick= "toggle ()"/>
<div id= "Divobj" style= "Display:none" >
1. Test examples <br/>
2. Test examples <br/>
3. Test examples <br/>
4. Test examples <br/>
5. Test examples <br/>
6. Test examples <br/>
7. Test examples <br/>
8. Test examples <br/>
9. Test examples <br/>
0. Test examples <br/>
</div>
</body>
PS: <div style= "Display:none" > Meaning:
"This div doesn't show up, it doesn't occupy its place, it hides."