判斷是否為移動設備,使用if判斷裝置,使用相對應的內容。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <!doctype html> <html> <head> <meta charset="UTF-8"> <title>Jquery判斷是否移動設備瀏覽</title> <style> .main_header { background-color:#999; height: 25vh; } </style> <script src="https://code.jquery.com/jquery.min.js"></script> <script> $(document).ready(function() { 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.any() ) { $('.main_header').css('background-color', 'red'); } }); </script> </head> <body> <div class="main_header"></div> </body> </html> |