JS改成这样:
js获取窗口大小 js获取屏幕大小
js获取窗口大小 js获取屏幕大小
js获取窗口大小 js获取屏幕大小
js获取窗口大小 js获取屏幕大小
js获取窗口大小 js获取屏幕大小
functiongetViewSize(){
return{
"w":window['innerWidth']||document.documentElement.clientWidth,
"h":window['innerHeight']||document.documentElement.clientHeight
}
}
functiongetFullSize(){
varw=Math.max(document.documentElement.clientWidth,document.body.clientWidth)+
Math.max(document.documentElement.scrollLeft,document.body.scrollLeft);
varh=Math.max(document.documentElement.clientHeight,document.body.clientHeight)+
Math.max(document.documentElement.scrollTop,document.body.scrollTop);
w=Math.max(document.documentElement.scrollWidth,w);
h=Math.max(document.documentElement.scrollHeight,h);
return{
"w":w,
"h":h
};
}
functionsetContainerSize(){
size=getViewSize();
console.log(size);
document.getElementById("div").style.width=size["w"]-100+"px";
document.getElementById("div").style.height=size["h"]-100+"px";
}
setContainerSize();
window.onresize=setContainerSize;
window.open('page.html','newwindow','height=100,width=400,top=0,left=0,=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no')
window.open 弹出新窗口的命令;
'page.html' 弹出窗口的文件名;
'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空''代替;
height=100 窗口高度;
width=400 窗口宽度;
top=0 窗口距离屏幕上方的象素值;
left=0 窗口距离屏幕左侧的象素值;
=no 是否显示工具栏,yes为显示;
menubar,scrollbars 表示菜单栏和滚动栏。
resizable=no 是否允许改变窗口大小,yes为允许;
location=no 是否显示地址栏,yes为允许;
status=no 是否显示状态栏内的信息(通常是文件已经打开),yes为允许;
注意:很多浏览器会屏蔽这个方法
先来一个浏览器窗口大小改变的,用来查看浏览器窗口的大小被改变可以触发一些函数
window.onresize 浏览器窗口大小改变
在写js的时候偶尔需要获取各种高度,比如;浏览器高度,页面高度,滚动高度等。
(不加边线):
网页可见区域的高度和宽度(加边线):
窗体大小变化的为:resize(),你化,小化的时候都可以触发他。就写在body标签里就可以了。
关闭的时候可以onbeforeunload()方法
我把我项目的一段拷贝给你看
//Written by Milo on Oct 22th,2010
//新增或者修改状态下离开该画面提示保存消息
window.onbeforeunload = function(){
if(editing)
{
return "离开此画面可能造成尚未保存的资料丢失。";
}
}
JQuery获取:
console.log($(window).width()); //浏览器当前窗口可视区域宽度
js获取窗口大小 js获取屏幕大小
console.log($(window).height()); //浏览器当前窗口可视区域高度
console.log($(document).width());//浏览器当前窗口文档对象宽度
console.log($(document).height()); //浏览器当前窗口文档的高度
console.log($(document.body).width());//浏览器当前窗口文档body的宽度
console.log($(document.body).height());//浏览器当前窗口文档body的高度
console.log($(document.body).outerWidth(true));//浏览器当前窗口文档body的总宽度 包括border padding margin
console.log($(document.body).outerHeight(true));//浏览器当前窗口文档body的总高度 包括border padding margin
JS获取:
窗口可视区域宽度 : document.documentElement.clientWidth || document.body.clientWidth;
窗口可视区域高度 : document.documentElement.clientHeight || document.body.clientHeight;
窗口可视区域宽度+边线和滚动条 : document.body.offsetWidth ;
窗口可视区域高度+边线和滚动条 : document.body.offsetHeight ;
实际内容的宽度 : document.body.scrollWidth;
实际内容的高度 : document.body.scrollHeight;
滚动条下拉被卷起来的距离 :document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop;
滚动条侧拉被卷起来的距离 :document.body.scrollLeft || document.documentElement.scrollLeft ;
网页正文部分上 :window.screenTop;
网页正文部分左 :window.screenLeft;
元素的宽度 :obj.offsetWidth;
元素的高度 :obj.offsetHeight;
相对于父元素的上位移 :obj.offsetTop;(在元素的包含元素不含滚动条的情况下)
相对于父元素的左位移 :obj.offsetLeft;(在元素的包含元素不含滚动条的情况下)
js获取窗口大小 js获取屏幕大小
jsp获取浏览器宽度是通过js来实现的。
JS 获取浏览器窗口大小
// 获取窗口宽度
if (windows.innerWidth)
winWidth = windows.innerWidth;
else if ((document.body) && (document.body.clientWidth))
winWidth = document.body.clientWidth;
// 获取窗口高度
if (windows.innerHeight)
winHeight = windows.innerHeight;
else if ((document.body) && (document.body.clientHeight))
winHeight = document.body.clientHeight;
// 通过深入 Document 内部对 body 进行检测,获取窗口大小
if (document.documentElement && document.documentElement.clientHeight && document.documentElement.clientWidth)
{
winHeight = document.documentElement.clientHeight;
winWidth = document.documentElement.clientWidth;
}
window.open('page.html','newwindow','height=100,width=400,top=0,left=0,=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no')//该句写成一行代码
参数解释:
window.open弹出新窗口的命令;
'page.html'弹出窗口的文件名;
'newwindow'弹出窗口的名字(不是文件名),非必须,可用空''代替;
height=100窗口高度;
width=400窗口宽度;
top=0窗口距离屏幕上方的象素值;
left=0窗口距离屏幕左侧的象素值;
=no是否显示工具栏,yes为显示;
menubar,scrollbars表示菜单栏和滚动栏。
resizable=no是否允许改变窗口大小,yes为允许;
location=no是否显示地址栏,yes为允许;
js获取窗口大小 js获取屏幕大小
status=no是否显示状态栏内的信息(通常是文件已经打开),yes为允许
版权声明:本文内容由互联。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发 836084111@qq.com 邮箱删除。