var eventPassthrough = ''; window.addEventListener("orientationchange", function() { if (window.orientation === 0) { console.log('竖屏'); eventPassthrough = 'horizontal'; } else if (window.orientation === 90) { console.log('横屏'); eventPassthrough = 'portrait'; } console.log(window.orientation, 'orientation'); }, false);