网络编程 
首页 > 网络编程 > 浏览文章

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

(编辑:jimmy 日期: 2026/4/15 浏览:3 次 )
复制代码 代码如下:
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实现带搜索功能的下拉框实时搜索实时匹配