이 기사의 예에서는 iPhone 화면 방향에 따라 자바스크립트가 다양한 스타일 시트 호출을 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
iPhone 화면이 회전할 때 이 JS 코드는 화면 변화에 맞게 다양한 스타일을 동적으로 호출할 수 있습니다
<script type="text/javascript"> function orient() { switch(window.orientation){ case 0: document.getElementById("orient_css").href = "css/iphone_portrait.css"; break; case -90: document.getElementById("orient_css").href = "css/iphone_landscape.css"; break; case 90: document.getElementById("orient_css").href = "css/iphone_landscape.css"; break; } window.onload = orient(); </script>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.