jQuery load() 方法
实例
图像完全加载时弹出提醒:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("img").load(function(){
alert("Image loaded.");
});
});
</script>
</head>
<body>
<img src="img_moustiers-sainte-marie.jpg" alt="Cinqueterra" width="304" height="236">
<p><b>注意:</b> 根据浏览器的不同,如果缓存图像,则可能不会触发加载事件。</p>
</body>
</html>
定义与用法
load()
方法在 jQuery 1.8 版中被弃用,在 3.0 版中被 删除。
load()
方法将事件处理程序附加到加载事件。
load
事件在加载指定元素时发生。
该事件适用于任何带有 URL 的元素(image, script, frame, iframe)和 window 对象关联的元素。
注意: 还有一个名为 load() 的 jQuery AJAX 方法。根据不同的参数决定调用哪个方法。
语法
$(selector).load(function)
参数 | 描述 |
---|---|
function | 必填。指定加载指定元素后要运行的函数 |