Ultimele tutoriale de dezvoltare web
 

Fereastra screenX și screenY Proprietăți

<Fereastra Object

Exemplu

Întoarceți-x și y coordonatele fereastră nouă în raport cu ecran:

var myWindow = window.open("", "myWin");
myWindow.document.write("<p>This is 'myWin'");
myWindow.document.write("<br>ScreenX: " + myWindow.screenX);
myWindow.document.write("<br>ScreenY: " + myWindow.screenY + "</p>");
Încearcă - l singur »

Mai multe "Try it Yourself" - "Try it Yourself" exemplele de mai jos.


Definiție și utilizare

Proprietățile screenX și screenY returnează x (horizontal) și y (vertical) coordonatele ferestrei în raport cu ecranul.


Suport pentru browser-

Numerele din tabel specifica prima versiune de browser care acceptă pe deplin proprietatea.

Proprietate
screenX da 9 da da da
screenY da 9 da da da

Tip: Pentru IE8 și mai devreme, puteți folosi „ window.screenLeft “ și „ window.screenTop “ în loc (See "More Examples") A se (See "More Examples") .


Sintaxă

window.screenX
window.screenY

Detalii tehnice

Întoarcere Valoare: Un număr, care reprezintă distanța pe orizontală și / sau verticală a ferestrei în raport cu ecranul, în pixeli

Exemple

Mai multe exemple

Exemplu

Deschideți o fereastră nouă cu o poziție specificată stânga și sus, și să se întoarcă coordonatele:

var myWindow = window.open("", "myWin", "left=700, top=350, width=200, height=100");
myWindow.document.write("<p>This is 'myWin'");
myWindow.document.write("<br>ScreenX: " + myWindow.screenX);
myWindow.document.write("<br>ScreenY: " + myWindow.screenY + "</p>");
Încearcă - l singur »

Exemplu

Soluție Cross browser (using screenLeft and screenTop 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>");
Încearcă - l singur »

<Fereastra Object