jQuery ?? ??
jQuery ????? ??
?? jQuery ???? ?????? ?????. ??? ??? ??? ??? ??? ??? ??? ? ????.
?: $("p").hide("slow")
?? ?? ?? ????? "??", "??", "??" ?? ??? ? ??? ??? ??? ? ????.
Instances
?? ???? ??? ??? ??? ??? ? ?? ??? ????.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").hide("slow",function(){ alert("段落現(xiàn)在被隱藏了"); }); }); }); </script> </head> <body> <button>隱藏</button> <p>點(diǎn)擊“隱藏”按鈕我就會(huì)消失</p> </body> </html>
?? ???? ?? ??? ??? ??? ??? ???? ?? ?? ??? ?????.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").hide(1000); alert("現(xiàn)在段落被隱藏了"); }); }); </script> </head> <body> <button>隱藏</button> <p>這是一個(gè)段落</p> </body> </html>