欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

js函数返回多个返回值的示例代码_javascript技巧

程序员文章站 2022-04-07 15:22:22
...
复制代码 代码如下:

var w = getClientSize().width;
var h = getClientSize().height - 97;

复制代码 代码如下:

function getClientSize() {
var a = h = 0;
if (window.innerHeight) {
a = window.innerWidth;
h = window.innerHeight
} else {
if (document.documentElement && document.documentElement.clientHeight) {
a = document.documentElement.clientWidth;
h = document.documentElement.clientHeight
} else {
a = document.body.clientWidth;
h = document.body.clientHeight
}
}
return {
width: a,
height: h
};
}
相关标签: js函数 返回值