이벤트 속성

3446 단어 event
t 브라우저의 왼쪽 위 모서리에 대한 마우스 좌표 가져오기
 
 
<script type="text/javascript">

        window.onload = function () {

            document.getElementById('dv').onmousedown = function () {

                //         0      ,    0,0  

                if (arguments.length > 0) {

                    //     

                    document.title = arguments[0].clientX + '====' + arguments[0].clientY;

                } else {

                    //IE   

                    document.title = window.event.clientX + '====' + window.event.clientY;

                }

            };

        };

    </script>

사용자가 누른 키 가져오기
 
 
<script type="text/javascript">



        window.onload = function () {



            document.getElementById('dv').onclick = function () {



                //       ctrl 

                if (window.event.ctrlKey) {

                    alert('   ctrl ');

                } else if (window.event.shiftKey) {

                    alert('   shift ');

                } else if (window.event.altKey) {

                    alert('   alt ');

                } else {

                    alert('      ');

                }

                //       shift 



                //       alt 

            };

          

        };

    </script>

마우스 각 키의 값 가져오기
 window.event.button;//왼쪽 버튼은 1, 오른쪽 버튼은 2, 좌우는 동시에 3, 미끄럼틀은 4
//가져온 가로 좌표는 화면 왼쪽 상단에 상대적인//문서입니다.title = window.event.screenX+'==='+window.event.screenY;
//현재 이 요소의 왼쪽 상단 - 이벤트 소스document.title = window.event.offsetX;

좋은 웹페이지 즐겨찾기