jQuery ????? ??
jQuery? ?? ??/???? ??? ? ????. ??? ???? ??? ????? ?? jQuery ???(??? ??? ??)? ??? ? ????.
???? ??? jQuery ?? ? ?? ???(? ?? ???) ??????. ??? ??? ??? ?? ?? jQuery ??? ??? ??? ? ?? ????? ??? ????. ?: ??? ?? ????? ??? ??? ?? ? ?? ??? ????.
??? ????? ?? ??? ??? ????? ?? ???.
?? 1. ?? ????? css(), SlideUp() ? SlideDown()? ?? ?????. "p1" ??? ?? ????? ?? ?? ?? ????? ?? ??? ???????.
<!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery-3.1.1.min.js"></script> <script> $(document).ready(function() { $("button").click(function(){ $("#p1").css("color","red").slideUp(2000).slideDown(2000); }); }); </script> </head> <body> <p id="p1">jQuery 樂趣十足!</p> <button>點(diǎn)擊這里</button> </body> </html>
??? ?? ?? ??? ??? ??? ?? ????. ?: ??? ? ?? ?? ??? ???. ??? jQuery? ??? ?? ??? ???? ????. ? ?? ? ????? ???? ??? ???? ??? ? ????.
?? 2, ??? ?? ???? ??? ?? ????.
<!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery-3.1.1.min.js"></script> <script> $(document).ready(function() { $("button").click(function(){ $("#p1").css("color","red") .slideUp(2000) .slideDown(2000); }); }); </script> </head> <body> <p id="p1">jQuery 樂趣十足!</p> <button>點(diǎn)擊這里</button> </body> </html>
jQuery? ??? ??? ??? ?? ?? ?? ??? ? ?? ?? ?????.