모바일에서 pc 화면 보기 전환후 다시 들어가면 모바일로 전환이 안되어있습니다.
본문
그누보드 모바일 화면에서 pc화면으로 보기 버튼을 누른 후 해당 화면 종료 후에 다시 링크를 들어가면
모바일 페이지가아니라 pc화면으로 보이는데 다시 모바일 화면으로 보기 를 누르지 않아도
바로 모바일 화면으로 볼수 없을까요?
답변 1
헤드에 모바일로 넘어가는 스크립트를 추가하시면 바로바로
모바일로 넘어가게하면됩니다.
?device=mobile
조건문걸어서 if($_GET[device]=='pc')
일경우에는 피씨로 넘어가게 만들구여
| <script type="text/javascript"> | |
| function isMobileDevice() | |
| { | |
| var mobileKeyWords =new Array('iPhone', | |
| 'iPod', | |
| 'BlackBerry', | |
| 'Android', | |
| 'Windows CE', | |
| 'Windows CE;', | |
| 'LG', | |
| 'SAMSUNG', | |
| 'MOT', | |
| 'SonyEricsson', | |
| 'Mobile', | |
| 'Symbian', | |
| 'Opera Mobi', | |
| 'Opera Mini', | |
| 'IEmobile'); | |
| for (var word in mobileKeyWords) | |
| { | |
| if (navigator.userAgent.match(mobileKeyWords[word]) != null) | |
| { | |
| return true; | |
| } | |
| } | |
| } | |
| if (isMobileDevice()) | |
| { | |
| //window.location.href = "m/index.html"; | |
| window.location.href = "http://dhktek1.cafe24.com"; | |
| } | |
| </script> | |
| </head> | |
| <body> | |
| <div class="index_pc"> | |
| <iframe src="http://dhktek1.cafe24.com" frameborder="0" class="m_ifr"></iframe> | |
| </div> | |
| </body> | |
| </html> |
답변을 작성하시기 전에 로그인 해주세요.