JS函数多个返回值

来源:互联网 发布:win7怎么打开137端口 编辑:程序博客网 时间:2024/05/19 13:20
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    };}var w = getClientSize().width;var h = getClientSize().height - 97;
0 0
原创粉丝点击