当前位置:Gxlcms > JavaScript > js函数返回多个返回值的示例代码

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

时间:2021-07-01 10:21:17 帮助过:10人阅读

代码如下:

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
};
}

人气教程排行