<body onload=" ">是在頁面全部元素(包括html標籤以及引用到得全部圖片,Flash等媒體)加載完畢後執行的,html
$(document).ready(function(){}) 替換爲$(function)jquery
是文檔結構已經加載完成(不包含圖片等非文字媒體文件),沒必要等到全部的加載完畢.<body onload=" ">和$(function)不能同時使用ajax
CDN:api
菜鳥教程 <head> <script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"> </script> </head>app
百度<head> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> </head>ide
又拍雲<head> <script src="http://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.2.min.js"> </script> </head>this
新浪<head> <script src="http://lib.sinaapp.com/js/jquery/2.0.2/jquery-2.0.2.min.js"> </script> </head>google
谷歌<head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script> </head>通常不使用,由於谷歌在中國不穩定spa
Microsoft <head> <script src="http://ajax.htmlnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js"> </script> </head>code
jquery格式:
$(this).hide() - 隱藏當前元素
$("p").hide() - 隱藏全部 <p> 元素
$("p.test").hide() - 隱藏全部 class="test" 的 <p> 元素
$("#test").hide() - 隱藏全部 id="test" 的元素