跨浏览器获取可视浏览器的长度

来源:互联网 发布:linux公社ftp下载 编辑:程序博客网 时间:2024/05/23 18:11
var width = window.innerWidth;var height = window.innerHeight;if (typeof width != 'number') {    if (typeof document.compatMode == 'CSS1Compat') {        width = document.documentElement.clientWidth;        height = document.documentElement.clientHeight;    }else{        width = document.body.clientWidth;        height = document.body.clientHeight;    }};
0 0
原创粉丝点击