4.11 DOMContentLoaded 事件與 load 事件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>以下這張圖有近6M大小</div>
<!-- 這張圖有 6M 的大小 -->
<img src="https://alldata.sgp1.digitaloceanspaces.com/images/mountain.jpg" id="my_img">
<script>
// 圖片等資源載入完成之後,load 事完觸發
window.addEventListener("load", function(){
console.log("圖片載入完成");
});
// DOM 載入完成之後,DOMContentLoaded 事件觸發
document.addEventListener("DOMContentLoaded", function(){
console.log("DOM 載入完成");
});
</script>
</body>
</html>Last updated