欢迎访问服务器技术网-www.fuwuqijishu.com

Window screenLeft 和 screenTop 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 19次浏览 0个评论 扫描二维码
文章目录[隐藏]

Window screenLeftscreenTop 属性

Window 对象


定义和用法

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>菜鸟教程(runoob.com)</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>


Window 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2220.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900