//适配兼容 if (window.ActiveXObject || "ActiveXObject" in window) { alert("您的浏览器版本过低,建议使用edge,360极速模式,firefox,chrome等浏览器访问。") } document.getElementsByTagName('body')[0].style.zoom = '100%' var windowWidth = window.innerWidth if (windowWidth > 1700) { document.getElementsByTagName('body')[0].style.zoom = '100%' } else if (windowWidth > 1300) { document.getElementsByTagName('body')[0].style.zoom = '80%' } else { document.getElementsByTagName('body')[0].style.zoom = '60%' } localStorage.setItem("bodyZoom",document.getElementsByTagName('body')[0].style.zoom) // window.onload = function () { // setTimeout(() => { // const windowWidth = window.innerWidth // if (windowWidth > 1745) { // document.getElementsByTagName('body')[0].style.zoom = '100%' // } // else if (windowWidth > 1500) { // document.getElementsByTagName('body')[0].style.zoom = '80%' // } else { // document.getElementsByTagName('body')[0].style.zoom = '65%' // } // }, 0) // }