screenLeft和screenTop属性返回窗口相对于屏幕的X和Y坐标。
window.screenLeft window.screenTop
所有主流浏览器都支持screenLeft和screenTop属性,Firefox除外。
注意: Firefox 浏览器请使用 "window.screenX" and "window.screenY"。
返回新窗口相对于屏幕的X和Y坐标:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟学堂(edu.jb51.net)</title> <script> function openWin(){ myWindow=window.open('',''); myWindow.document.write("<p>这是'我的窗口'"); myWindow.document.write("<br>ScreenLeft: " + myWindow.screenLeft); myWindow.document.write("<br>ScreenTop: " + myWindow.screenTop + "</p>"); } </script> </head> <body> <input type="button" value="打开 '我的窗口'" onclick="openWin()"> </body> </html>尝试一下 »