Javascript 中 window.onload 和 document.onload 的区别是什么?
document.onload
图像和其他外部内容加载之前触发。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>
广告