js里获取html真实舞台宽高

    var winSize = {width:document.documentElement.clientWidth,height:document.documentElement.clientHeight};
 var winWidth = 0;
 var winHeight = 0;

    window.onload = function(){
        console.log("onload...");

        winWidth = document.documentElement.clientWidth;
        winHeight = document.documentElement.clientHeight;

    }

猜你喜欢

转载自www.cnblogs.com/JD85/p/10144300.html