码迷,mamicode.com
首页 > Windows程序 > 详细

Window Position

时间:2015-05-19 18:25:51      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

  IE, Safari, Opera, and Chrome all provide screenLeft and screenTop properties that indicate the window‘s location in relation to the left and top of the screen, respectively. Firefox provides this functionality through the screenX and screenY, which are also supported in Safari and Chrome. Opera supported screenX and screenY, but you should avoid using them in Opera, because they don‘t correspond to screenLeft and screenTop. The following code determines the left and top positions of the window across browsers:

1 var leftPos = (typeof window.screenLeft == "number")? window.screenLeft : window.screenX;
2 var topPos = (typeof window.screenTop == "number")? window.screenTop : window.screenY;

  This example uses the ternary operator to determine if the screenLeft and screenTop properties exist. If they do(which is the case in IE, Safari, Opera, and Chrome), they are used. If they don‘t exist(as in Firefox), screenX and screenY are used.

 

Window Position

标签:

原文地址:http://www.cnblogs.com/linxd/p/4515026.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!