当加载元素时触发 onload
属性事件。
onload
最常用于< body> 元件以在网页已完全加载全部时执行脚本内容,包括图像,脚本文件,CSS文件等。
我们也可以使用 onload
attribute event和iframe。
没有。
<element onload="script or Javascript function name">
<body>, <frame>, <frameset>, <iframe>, <img>, <input type="image">, <link>, <script> <style>
onload |
Yes | Yes | Yes | Yes | Yes |
以下代码处理body元素上的onload事件。
<!DOCTYPE html>
<html>
<head>
<script>
function myFunction() {
alert("Page is loaded");
if (navigator.cookieEnabled == true) {
alert("Cookies are enabled.");
} else {
alert("Cookies are not enabled.");
}
}
</script>
</head>
<body onload="myFunction()">
<h1>Hello World!</h1>
</body>
</html>
以下代码处理图像元素的onload事件。
<!DOCTYPE html>
<html>
<body>
<img src="/attachments/jimg/border.png" onload="loadImage()" width="100" height="100">
<script>
function loadImage() {
alert("Image is loaded");
}
</script>
</body>
</html>