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

jQuery ?? ??

?? ??? ???? ?? ???? http://jquery.com/download/? ?????. ???? jQuery? 1.x? 2.x? ? ?? ??? ???? ???? ??? ?? ?????. ?(?) ? ?? IE6, 7, 8 ????? ???? ????. ?? ??? ??? ??? ????? ?? ?? ????. ? ??? ?? ?? ??? ?? jQuery 1.x?? ?? ????.

???? ?? ??? IE ???? ?? ? ???? ?? jQuery 1.9 ? ?? ??? ??? ? ????. ????? ??? ?? ????? ?? 1.9? ?????. ? jQuery ??? ?? ??(compressed)? ?? ??(development)?? ?????. ?? ????? ?? ??? ????(?? ??? ?? ?? ? ???? ???) ?? ??? ?????. ????? ??? ???(?? ??? ??? ? ?? ???) ? ?? ????.

jQuery? JavaScript ???? ???????? ??? ??? ???? ????. ???? <head> ??? ?? ???? ??? ???? jQuery ?????? ???? ???.

<!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">   
     <script type="text/javascript" src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>
    <title>環(huán)境搭建</title>
</head> 
<body>  
  <script type="text/javascript">
   alert($) 
   </script>
  </body>
</html>

Alternatives

jQuery? ?????? ????? ?? ??? CDN(Content Delivery Network)? ?? ??? ?? ????.

Baidu, Youpaiyun, Sina, Google ? Microsoft ?? ??? jQuery? ???? ????.

??? ???? ??? ???? ???, ????, ?? ? ?? CDN ??? ???? ?? ????. ??? ???? ??, ???????? ????? ???.

??: ? ???? ?? ??? Baidu jQuery CDN ?????? ?????.

Baidu, Youpaiyun, Sina, Google ?? Microsoft? jQuery? ???? ?? ?? ?? ?? ? ??? ?????.

<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("button").click(function(){
    $("p").hide();
  });
});
</script>
</head>
<body>
<h2>這是一個(gè)標(biāo)題</h2>
<p>這是一個(gè)段落。</p>
<p>這是另一個(gè)段落。</p>
<button>點(diǎn)我</button>
</body>
</html>

Google CDN? ?? ?? ??? ?? ??? ???????.
Google CDN? ???? ???? Google ??? ???? ?? ????? ?????.
Google URL? ?? ??? ???? URL? jQuery ??(1.8.0)? ???? ????. ?? ??? jQuery? ????? ?? ?? ??? ??? ??(?: ? ???? 1.8)? ???? Google? 1.8 ????? ?? ??? ?? ??(1.8.0, 1.8)? ?????. .1 ?), ?? ? ?? ??? ???? ?? ????, Google? 1 ????? ?? ??? ?? ??(1.1.0 ~ 1.9.9)? ?????.


Baidu, Youpaiyun, Sina, Google ?? Microsoft?? jQuery? ???? ? ??? ????.
?? ???? jQuery? ?? ?? ???? ??? ? ?? Baidu, Youpaiyun, Sina, Google ?? Microsoft?? jQuery? ??????. ????? ???? ??? ???? ??? ? jQuery? ???? ???? ?? ??? ?????. ??? ???? CDN? ???? ??? ???? ????? ?? ??? ???? ??? ????? ????? ?? ??? ??? ? ????.


???? ??
||
<!DOCTYPE html> <html> <head> <script src="http://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.2.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").hide(); }); }); </script> </head> <body> <h2>這是一個(gè)標(biāo)題</h2> <p>這是一個(gè)段落。</p> <p>這是另一個(gè)段落。</p> <button>點(diǎn)我</button> </body> </html>