亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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? ??? ??? ??? ?? ?? ?? ??? ? ?? ?? ?????.

???? ??
||
<!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>