onloadとonclickその他のイベントのデフォルトの実行順序

4418 ワード


<html>
    <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.wirte()  title>

    head>
    <body>
        <div class="wrap" style="text-align:center;">
            <button id="btn" >button>
        div>

       <script>
       /*  onclick   onload     ,       */
       window.onload = function(){
            alert("       ,  onclick      ");
            document.getElementById("btn").onclick=function()
            {   
                alert("onclick      ");
                document.write("
, , ,

"
); document.write("

"
); document.write("
: , 。 button onclick , , , ,
"
); // onclick , onload ? //document.close(); } } /* onload onclick , document.getELementById("btn").onclick = function(){ alert("onclick "); window.onload = function(){ alert("onload "); document.write("
, , ,

"); document.write("

"); document.write("
: , 。 button onclick , , , ,
"); } } */
script> body> html> : onclick window.onload 。