outerWidth和innerWidth获取浏览器窗口的尺寸是多少?
在Javascript中可以使用OuterWidth,OuterHeight 获取浏览器的大小.用 innerWidth,innerHeight 来获取窗口的大小(除去浏览器边框部分)。对于IE6 及之前版本,要区分是标准模式,还是混杂模式。标准模式使用document.documentElement.clientWidth,document.documentElement.clientHeight;混杂模式使用document.body 的clientWidth,clientHeight。复制代码 代码如下:(function () { var pageWidth = window.innerWidth; var pageHeight = window.innerHeight; var broswerWidth = window.outerWidth; var broswerHeight = window.outerHeight; alert(pageWidth + " " + pageHeight); alert(broswerWidth + " " + broswerHeight); if (typeof pageWidth != "number") { if (document.compatMode == "CSS1Compat") { //The standard mode pageWidth = document.documentElement.clientWidth; pageHeight = document.documentElement.clientHeight; } else { pageWidth = document.body.clientWidth; pageHeight = document.body.clientHeight; } } })();获取窗口的位置:IE,chrome,Safari,使用screenLeft,screenTop 来获取窗口距离屏幕左边和屏幕上边的位置。而Firefox不支持此属性,Firefox使用screenXP,screenY 达到同样的效果。复制代码 代码如下:(function btnFun() { var leftPos = (typeof window.screenLeft == "number") ? window.screenLeft : window.screenX; var topPos = (typeof window.screenTop == "number") ? window.screenTop : window.screenY; alert(leftPos + " " + topPos); //alert(window.screenLeft+" "+window.screenTop); })();
弈安传媒科技回复,成功后要回复哟,要点赞,并关注,转发.
[弈安传媒科技提升自己的平台]更多知识请关注:头条号及公众号 弈安传媒科技
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有