📅  最后修改于: 2020-11-26 07:11:13             🧑  作者: Mango
load()方法用于加载特定元素。它将事件处理程序附加到加载事件。在jQuery库的jQuery 1.8版本中不推荐使用。
当加载特定元素时,发生load事件。它通常与URL(图像,脚本,框架,iframe)和窗口对象一起使用。
注意:在某些浏览器中,如果缓存了图像,则不会触发load事件。
句法:
$(selector).load(function)
它将一个函数添加到load事件。
Parameter | Description |
---|---|
Function | It is an essential parameter. It executes itself when the specified element is done loading. |
让我们以一个示例来演示jQuery load()事件。
Note: On some browsers, the load event did not trigger if the image is cached.