Derniers tutoriels de développement web
 

Fenêtre screenLeft et Propriétés screenTop

<Object Window

Exemple

Remettre les coordonnées x et y de la nouvelle fenêtre par rapport à l'écran:

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>");
Essayez vous - même »

Plus "Try it Yourself" - "Try it Yourself" exemples ci - dessous.


Définition et utilisation

Les propriétés screenLeft et screenTop renvoie les x (horizontal) et y (vertical) des coordonnées de la fenêtre par rapport à l'écran.


Support du navigateur

Les chiffres du tableau indiquent la première version du navigateur qui prend en charge entièrement la propriété.

Propriété
screenLeft Oui Oui Non supporté Oui Oui
screenTop Oui Oui Non supporté Oui Oui

Note: Pour Firefox, utilisez « window.screenX » et « window.screenY » (See "More Examples" for a cross-browser solution) .


Syntaxe

window.screenLeft
window.screenTop

Détails techniques

Valeur de retour: Un nombre, représentant la distance horizontale et verticale de la fenêtre par rapport à l'écran, en pixels

Exemples

autres exemples

Exemple

Solution Cross navigateur (using screenX and screenY for IE8 and earlier) en (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>");
Essayez vous - même »

<Object Window