document.onload
เริ่มทำงานก่อนที่จะโหลดรูปภาพและเนื้อหาภายนอกอื่นๆ เอกสาร โหลด เหตุการณ์ถูกไล่ออกก่อน window.onload
window.onload
เริ่มทำงานเมื่อมีการโหลดหน้าเว็บทั้งหมด ซึ่งรวมถึงรูปภาพ สคริปต์ css เป็นต้น
ตัวอย่าง
นี่คือตัวอย่างเพื่อทำความเข้าใจ onload
การสาธิตสด
<html>
<head>
<title>JavaScript Animation</title>
<script>
<!--
var imgObj = null;
function init() {
imgObj = document.getElementById('myImage');
imgObj.style.position= 'relative';
imgObj.style.left = '0px';
}
function moveRight() {
imgObj.style.left = parseInt(imgObj.style.left) + 10 + 'px';
}
window.onload =init;
//-->
</script>
</head>
<body>
<form>
<img id="myImage" src="/images/html.gif" />
<p>Click button below to move the image to right</p>
<input type="button" value="Click Me" onclick="moveRight();" />
</form>
</body>
</html>