容許你綁定一個在DOM文檔載入完成後執行的函數。這個函數的做用如同$(document).ready()同樣,只不過用這個函數 時,須要把頁面中全部須要在 DOM 加載完成時執行的$()操做符都包裝到其中來。從技術上來講,這個函數是可連接的--但真正以這種方式連接的狀況並很少。 你能夠在一個頁面中使用任意多個$(document).ready事件。參考 ready(Function) 獲取更多 ready 事件的信息。javascript
當DOM加載完成後要執行的函數java
當DOM加載完成後,執行其中的函數。函數
jQuery 代碼:spa
$(function(){ // 文檔就緒});
使用 $(document).ready() 的簡寫,同時內部的 jQuery 代碼依然使用 $ 做爲別名,而無論全局的 $ 爲什麼。code
jQuery 代碼:事件
jQuery(function($) { // 你能夠在這裏繼續使用$做爲別名...});
jQuery.data() Store arbitrary data associated with the specified element add/or return the value that setip
jQuery.data(element, key, value)
element: A Dom element to associated with the dataci
key: A string naming the piece of data to set element
value: The newdata value, Any javascript type except undefined文檔