Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery load() 方法

❮ jQuery 事件方法

示例

图像完全加载时显示警报文本

$("img").load(function(){
  alert("Image loaded.");
});
亲自试一试 »

定义和用法

load() 方法在 jQuery 1.8 版中已弃用,并在 3.0 版中移除 请改用 on()trigger() 方法。

请使用 .on("load", handler) 代替 .load(handler),并使用 .trigger("load") 代替 .load()

load() 方法将事件处理程序附加到 load 事件。

当指定元素已加载时,将发生 load 事件。

此事件适用于与 URL 关联的元素(图像、脚本、框架、iframe)以及窗口对象。

根据浏览器的不同,如果图像已缓存,则 load 事件可能不会触发(Firefox 和 IE)。

注意:jQuery 还有一种名为 load() 的 AJAX 方法。调用哪一个取决于参数。


语法

$(selector).load(function)

参数 描述
function 必需。指定在指定元素加载完成后要运行的函数。

亲自试一试 - 示例

图像完全加载时显示一些文本
如何更改图像完全加载时 <div> 元素的文本。

页面完全加载时显示警报文本
如何显示警报文本,以指示包括图像在内的窗口对象已完全加载。


❮ jQuery 事件方法

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.