최신 웹 개발 튜토리얼
 

창 screenLeft 및 screenTop 등록

<창 개체

화면에 새 창 상대의 x 및 y 좌표를 반환합니다 :

var myWindow = window.open("", "myWin");
myWindow.document.write("<p>This is 'myWin'");
myWindow.document.write("<br>ScreenLeft: " + myWindow.screenLeft);
myWindow.document.write("<br>ScreenTop: " + myWindow.screenTop + "</p>");
»그것을 자신을 시도

"Try it Yourself" 아래의 예.


정의 및 사용

screenLeft 및 screenTop 속성이 리턴 X (horizontal) 및 Y (vertical) 스크린 윈도우 상대 좌표.


브라우저 지원

테이블의 숫자는 완전히 속성을 지원하는 최초의 브라우저 버전을 지정합니다.

재산
screenLeft 지원되지 않음
screenTop 지원되지 않음

Note: 파이어 폭스를 들어, "사용 window.screenX "와 " window.screenY는 " (See "More Examples" for a cross-browser solution) .


통사론

window.screenLeft
window.screenTop

기술적 세부 사항

반환 값 : 픽셀 윈도우 화면의 가로 및 세로의 거리를 나타내는 숫자,

예

더 예

크로스 브라우저 솔루션 (using screenX and screenY for IE8 and earlier) :

// Open a new window with a specified left and top position
var myWindow = window.open("", "myWin", "left=700, top=350, width=200, height=100");

/*
If the browser does not support screenX and screen Y,
use screenLeft and screenTop instead (and vice versa)
*/
var winLeft = myWindow.screenLeft ? myWindow.screenLeft : myWindow.screenX;
var winTop = myWindow.screenTop ? myWindow.screenTop : myWindow.screenY;

// Write the new window's x and y coordinates relative to the screen
myWindow.document.write("<p>This is 'myWin'");
myWindow.document.write("<br>Horizontal: " + winLeft);
myWindow.document.write("<br>Vertical: " + winTop + "</p>");
»그것을 자신을 시도

<창 개체