fe-interview
fe-interview copied to clipboard
[js] 第294天 js如何检测当前页面是否以全屏模式显示?
document.fullscreenElement?
if (window.document.body.clientWidth === window.screen.width){ alert('全屏显示'+window.screenLeft) }