반응형
html 마우스 포인트 좌표 구하기
jquery 제이쿼리 이용하기<<
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(document).mousemove(function(event){
$("span").text("X: " + event.pageX + ", Y: " + event.pageY);
});
});
</script>
</head>
<body>
<p>The mouse pointer position is at: <span></span></p>
</body>
</html>
반응형
'IT 자료' 카테고리의 다른 글
파일다운로드 한글 깨짐 현상 (1) | 2015.03.09 |
---|---|
DB2 접속한 스키마 알아보기 (0) | 2015.03.09 |
제이쿼리로 이벤트 주기. (0) | 2015.03.03 |
익스플로러에서 table 넓이 지정하기 (0) | 2015.02.27 |
스크롤바 없애는 css (0) | 2015.02.27 |