初学者的问题
这里的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>