js设置body高度、宽度为浏览器窗口高度、宽度
window.onload = () => { document.getElementsByTagName("body")[0].style.height = document.body.scrollHeight+"px"; document.getElementsByTagName("body")[0].style.width = document.body.scrollWidth+"px"; }
window.onload = () => { document.getElementsByTagName("body")[0].style.height = document.body.scrollHeight+"px"; document.getElementsByTagName("body")[0].style.width = document.body.scrollWidth+"px"; }