자바스크립트로 브라우저 확인하는 방법입니다.
- <html>
- <head>
- <title>mobile</title>
- <script type="text/javascript">
- function detectmob() {
- if( navigator.userAgent.match(/Android/i)|| navigator.userAgent.match(/webOS/i)
- || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)
- || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/BlackBerry/i)
- || navigator.userAgent.match(/Windows Phone/i)
- )
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- if(detectmob())alert('this is mobile web browse');
- else alert('this is pc web browse');
- /* 또는
- var isMobile = {
- Android: function() {
- return navigator.userAgent.match(/Android/i);
- },
- BlackBerry: function() {
- return navigator.userAgent.match(/BlackBerry/i);
- },
- iOS: function() {
- return navigator.userAgent.match(/iPhone|iPad|iPod/i);
- },
- Opera: function() {
- return navigator.userAgent.match(/Opera Mini/i);
- },
- Windows: function() {
- return navigator.userAgent.match(/IEMobile/i);
- },
- any: function() {
- return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
- }
- };
- */
- </script>
- </head>
- <body>
-
- </body>
- </html>