は<body onload="sample()">
、IE6 を除く他のすべてのブラウザーで動作します。window.onload
IE6でも機能しませんでした。コードは次のとおりです。
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript">
function sample()
{
alert("hi");
}
</script>
</head>
<body onload="sample()"> ..... </body>
</html>