DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> 使用javascript實現判斷當前浏覽器
使用javascript實現判斷當前浏覽器
編輯:JavaScript綜合知識     

 寫了一個判斷當前浏覽器類型及版本的方法,只在IE 8/11 、谷歌 、360 浏覽器(不完全)上測試過

希望大家提出意見

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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 ;(function($, window, document,undefined){ if(!window.browser){   var userAgent = navigator.userAgent.toLowerCase(),uaMatch; window.browser = {}   /** * 判斷是否為ie */ function isIE(){ return ("ActiveXObject" in window); } /** * 判斷是否為谷歌浏覽器 */ if(!uaMatch){ uaMatch = userAgent.match(/chrome/([d.]+)/); if(uaMatch!=null){ window.browser['name'] = 'chrome'; window.browser['version'] = uaMatch[1]; } } /** * 判斷是否為火狐浏覽器 */ if(!uaMatch){ uaMatch = userAgent.match(/firefox/([d.]+)/); if(uaMatch!=null){ window.browser['name'] = 'firefox'; window.browser['version'] = uaMatch[1]; } } /** * 判斷是否為opera浏覽器 */ if(!uaMatch){ uaMatch = userAgent.match(/opera.([d.]+)/); if(uaMatch!=null){ window.browser['name'] = 'opera'; window.browser['version'] = uaMatch[1]; } } /** * 判斷是否為Safari浏覽器 */ if(!uaMatch){ uaMatch = userAgent.match(/safari/([d.]+)/); if(uaMatch!=null){ window.browser['name'] = 'safari'; window.browser['version'] = uaMatch[1]; } } /** * 最後判斷是否為IE */ if(!uaMatch){ if(userAgent.match(/msie ([d.]+)/)!=null){ uaMatch = userAgent.match(/msie ([d.]+)/); window.browser['name'] = 'ie'; window.browser['version'] = uaMatch[1]; }else{ /** * IE10 */ if(isIE() && !!document.attachEvent && (function(){"use strict";return !this;}())){ window.browser['name'] = 'ie'; window.browser['version'] = '10'; } /** * IE11 */ if(isIE() && !document.attachEvent){ window.browser['name'] = 'ie'; window.browser['version'] = '11'; } } }   /** * 注冊判斷方法 */ if(!$.isIE){ $.extend({ isIE:function(){ return (window.browser.name == 'ie'); } }); } if(!$.isChrome){ $.extend({ isChrome:function(){ return (window.browser.name == 'chrome'); } }); } if(!$.isFirefox){ $.extend({ isFirefox:function(){ return (window.browser.name == 'firefox'); } }); } if(!$.isOpera){ $.extend({ isOpera:function(){ return (window.browser.name == 'opera'); } }); } if(!$.isSafari){ $.extend({ isSafari:function(){ return (window.browser.name == 'safari'); } }); } } })(jQuery, window, document);

//使用方式

1 2 3 console.log(window.browser); console.log($.isIE()); console.log($.isChrome());
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved