1. 程式人生 > >jQuery-介紹

jQuery-介紹

pre 防止 1.4 class javascrip .cn script body 什麽

一:什麽是jQuery

  jQuery 是一個 JavaScript 庫。

二:安裝

  http://jquery.com/download/

  http://jquery.cuishifeng.cn/

  jQuery有兩個版本

    一個是帶有min,用於生產環境,例如:jquery-migrate-1.4.1.min.js

    一個是不帶有min,用於開發環境,例如:jquery-migrate-1.4.1.js

三:使用

  1)寫在head中

<head>
<script src="jquery-1.10.2.min.js"></script>
</head>

  2)寫在body中,推薦寫在後面,先加載內容,在加載JS,防止JS加載不了,卡住,影響體驗。

<body>
<script src="jquery-1.10.2.min.js"></script>
</body>

四:版本介紹

  jQuery有3個系列

  1.x

  2.x

  3.x

  推薦使用1.x,兼容舊版本瀏覽器。

 

  

jQuery-介紹