JQuery每日函数:核心jQuery(callback)
?
Allows you to bind a function to be executed when the DOM document has finished loading. This function behaves just like $(document).ready(), in that it should be used to wrap other $() operations on your page that depend on the DOM being ready to be operated on. While this function is, technically, chainable - there really isn't much use for chaining against it.返回值jQuery
参数callback (Function) : 当DOM加载完成后要执行的函数
示例当DOM加载完成后,执行其中的函数。
jQuery 代码:
$(function(){Uses both the shortcut for $(document).ready() and the argument to write failsafe jQuery code using the $ alias, without relying on the global alias.
jQuery 代码:
jQuery(function($) {