이벤트 이벤트 학습 소절

4191 단어
DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>event title>
head>
<body>
    <script>
        document.onclick=function(ev){// ,IE9 , ;
            var e=ev;
            console.log(e);
        }
        document.onclick=function(){// IE , ;
            var e=event;
            console.log(e);
        }
        document.onclick=function(ev){//
            var e=ev||window.event;
        }
        document.oncontextmenu=function(ev){
            var e=ev||window.event;
            if (ev.preventDefault) {
                ev.preventDefault();//w3c ;
            }else{
                ev.returnValue='false';//IE ;
            };
        }
    script>
body>
html>

좋은 웹페이지 즐겨찾기