js里获取html真实舞台宽高

mac2022-06-30  22

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; }

 

转载于:https://www.cnblogs.com/JD85/p/10144300.html

最新回复(0)