国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

jQuery ??

jQuery ??

jQuery ??? HTML ??? ???? ??? ??? ?? ?? ??? ???? ????.

?? ??: $(selector).action()

?? ?? ?? jQuery

Selector(selector) "??" ? "??" HTML ??

jQuery? action()? ??? ?? ??? ?????

?:

$(this).hide() - ?? ?? ???

$("p").hide() - ?? <p> ?? ???

$("p.test") .hide () - class="test"? ?? <p> ?? ???

$("#test").hide() - id="test"? ?? ?? ???

?? ?? ???

You ?? ??? ?? jQuery ??? ?? ?? ??? ??? ?? ????? ????:

$(document).ready(function(){
// jQuery ?? ?? ??...
}); ??? ??? ??(??)?? ?? jQuery ??? ???? ?? ???? ????.

??? ??? ???? ?? ??? ???? ??? ??? ? ????. ??? ? ?? ???? ????.

???? ?? ?? ???

????? ??? ???? ?? ????

?: ??? ??(?? ??? ??):

$(function(){

// jQuery ?? ?? ??...

});

??? ??? ? jQuery ???? ???? ?? ??? ???? ??? ? ????.

???? ??
||
<!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(){ $("#div1").empty(); }); }); </script> </head> <body> <div id="div1" style="height:100px;width:300px;border:1px solid black;background-color:green;"> <p>這是一段內容</p> <p>這還是一段內容</p> </div> <br> <button>清空框里內容</button> </body> </html>