| onloadよりも前に実行する |
|
onload処理よりも前に実行したい処理がある場合、以下のようにして実行します。 |
| ソース |
<html>
<head>
<title></title>
</head>
<body onload="init()">
<script language="JavaScript">
<!--
(function() {
alert('onload前に処理されます');
})()
function init(){
alert('onload');
}
// -->
</script>
|