首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

(四)事件处理——(5)为代码简洁做的快捷方式(Shortcuts for code brevity)

2013-10-11 
(4)事件处理——(5)为代码简洁做的快捷方式(Shortcuts for code brevity)The $(document).ready()construct

(4)事件处理——(5)为代码简洁做的快捷方式(Shortcuts for code brevity)
The $(document).ready()construct is actually calling the .ready()method on a jQuery object we've constructed from the documentDOM element. The $()function provides a shortcut for us as this is a common task. When we pass in a function as the argument, jQuery performs an implicit call to .ready(). For the same result as shown in the following code snippet:

$(function() {// Our code here...});
虽然另一种语法更加短,但是这个长的让更好的描述了他在做的事情。由于这个原因,我们将在整本书中使用长一些的语法。

热点排行