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

2019-12-24,,,

复制代码 代码如下:
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方法中返回多个值的方法汇总
  • js return返回多个值,通过对象的属性访问方法

《js函数返回多个返回值的示例代码.doc》

下载本文的Word格式文档,以方便收藏与打印。