初學者的問題
這裡的onload不是載入body後就會執行嗎?
為什麼會比bottom更慢執行呢
另外就是js放在</html>之後的用途是?
代碼:
<script>alert("top")</script>
<html>
<head>
<script>alert("head")</script>
</head>
<body onLoad="abc()">
<script>
alert("body");
function abc(){alert("onload");}
</script>
</body>
</html>
<script>alert("bottom")</script>