我想检测所有浏览器(Safari,Chrome,IE,Firefox和Opera浏览器)并使用javascript显示欢迎信息(例如“欢迎加入歌剧”)。
答案 0 :(得分:0)
希望这能帮到你..
// Browser with version Detection
navigator.sayswho= (function(){
var N= navigator.appName, ua= navigator.userAgent, tem;
var M= ua.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i);
if(M && (tem= ua.match(/version\/([\.\d]+)/i))!= null) M[2]= tem[1];
M= M? [M[1], M[2]]: [N, navigator.appVersion,'-?'];
return M;
})();
var browser_version = navigator.sayswho;
alert("Welcome to " + browser_version);
查看工作小提琴(here)