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

js教程评论405 views阅读模式
复制代码 代码如下:

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

};

}

企鹅博客
  • 本文由 发表于 2019年9月30日 12:38:39
  • 转载请务必保留本文链接:https://www.qieseo.com/420901.html

发表评论