마우스가 개체 위에서 이동하였을 때 발생하는 이벤트 핸들러입니다.
<html> <head> <script type="text/javascript"> <!-- function eventonmousemove() { alert('상자내에서 움직였습니다.') } --> </script> <style type="text/css"> div { width:200px;height:200px;background-color:blue;} </style> </head> <body> <div onmousemove="eventonmousemove()"></div> </body> </html>
기준 명세를 바탕으로 명세 번역과 레퍼런스 제작이 이루어졌습니다. 최근 내용은 최신 명세를 확인해 주세요.