javascript获得网页窗口实际大小的示例代码_javascript技巧
程序员文章站
2022-05-14 22:48:35
...
javascript代码:
function get_page_size()
{
var re = {};
if (document.documentElement && document.documentElement.clientHeight)
{
var doc = document.documentElement;
re.width = (doc.clientWidth>doc.scrollWidth)?doc.clientWidth-1:doc.scrollWidth;
re.height = (doc.clientHeight>doc.scrollHeight)?doc.clientHeight:doc.scrollHeight;
}
else
{
var doc = document.body;
re.width = (window.innerWidth>doc.scrollWidth)?window.innerWidth:doc.scrollWidth;
re.height = (window.innerHeight>doc.scrollHeight)?window.innerHeight:doc.scrollHeight;
}
return re;
}
904 viewed 3 comment(s)
代码实例:
获取窗口大小
复制代码 代码如下:
function get_page_size()
{
var re = {};
if (document.documentElement && document.documentElement.clientHeight)
{
var doc = document.documentElement;
re.width = (doc.clientWidth>doc.scrollWidth)?doc.clientWidth-1:doc.scrollWidth;
re.height = (doc.clientHeight>doc.scrollHeight)?doc.clientHeight:doc.scrollHeight;
}
else
{
var doc = document.body;
re.width = (window.innerWidth>doc.scrollWidth)?window.innerWidth:doc.scrollWidth;
re.height = (window.innerHeight>doc.scrollHeight)?window.innerHeight:doc.scrollHeight;
}
return re;
}
904 viewed 3 comment(s)
代码实例:
复制代码 代码如下:
上一篇: ios是java吗?
推荐阅读
-
JS判断两个时间大小的示例代码_javascript技巧
-
IE与FF下javascript获取网页及窗口大小的区别详解_javascript技巧
-
IE与FF下javascript获取网页及窗口大小的区别详解_javascript技巧
-
网页广告中JS代码的信息监听示例_javascript技巧
-
获得Javascript对象属性个数的示例代码_javascript技巧
-
网页广告中JS代码的信息监听示例_javascript技巧
-
javascript获得网页窗口实际大小的示例代码_javascript技巧
-
js判断上传文件的类型和大小示例代码_javascript技巧
-
手机端网页点击链接触发自动拨打或保存电话的示例代码_javascript技巧
-
JS判断两个时间大小的示例代码_javascript技巧