이 기사의 예에서는 js를 사용하여 모바일 시스템을 간단하게 판단하는 방법을 설명합니다. 참고하실 수 있도록 모두와 공유해 주세요. 자세한 내용은 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" > <meta name="format-detection" content="telephone=no"> <title>Document</title> </head> <body> <script> var isMobile = { Android : function() { return navigator.userAgent.match(/Android/i) ? true : false; }, BlackBerry : function() { return navigator.userAgent.match(/BlackBerry/i) ? true : false; }, iOS : function() { return navigator.userAgent.match(/iPhone|iPad|iPod/i) ? true : false; }, Windows : function() { return navigator.userAgent.match(/IEMobile/i) ? true : false; }, any : function() { return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows()); } }; if (isMobile.iOS()) { alert("apple"); } else { alert("Android"); } </script> </body> </html>
위는 js의 모바일 system_javascript 실력을 판단하는 간단한 방법의 내용입니다. 더 많은 관련 내용을 주목하세요 PHP 중국어 웹사이트(www.php.cn)!