.slideUp( [duration,] [callback] ) .slideUp( [duration,] [easing,] [callback] )
<html> <head> <title>ThaiCreate.Com jQuery Tutorials</title> <style> div { background:#3d9a44; margin:3px; width:80px; height:40px; float:left; } </style> <script type="text/javascript" src="jquery-1.6.4.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(document.body).click(function () { if ($("div:first").is(":hidden")) { $("div").show("slow"); } else { $("div").slideUp(); } }); }); </script> </head> <body> Click me! <div></div> <div></div> <div></div> <div></div> <div></div> </body> </html>
<html> <head> <title>ThaiCreate.Com jQuery Tutorials</title> <style> div { margin:2px; } </style> <script type="text/javascript" src="jquery-1.6.4.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function () { $(this).parent().slideUp("slow", function () { $("#msg").text($("button", this).text() + " has completed."); }); }); }); </script> </head> <body> <div> <button>Hide One</button> <input type="text" value="One" /> </div> <div> <button>Hide Two</button> <input type="text" value="Two" /> </div> <div> <button>Hide Three</button> <input type="text" value="Three" /> </div> <div id="msg"></div> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท