js监听浏览器

$(function (){

var nowBrowser = myBrowser();

if ("FF" == nowBrowser) {

alert("当前浏览器不支持WebP格式图片,请使用Chrome浏览器!"); } })

//ktt 判断当前浏览器的方法

function myBrowser(){

var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串

var isOpera = userAgent.indexOf("Opera") > -1;

if (isOpera) { return "Opera" }; //判断是否Opera浏览器

if (userAgent.indexOf("Firefox") > -1) { return "FF"; } //判断是否Firefox浏览器

if (userAgent.indexOf("Chrome") > -1){ return "Chrome"; } //判断是否Chrome浏览器

if (userAgent.indexOf("Safari") > -1) { return "Safari"; } //判断是否Safari浏览器

if (userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1 && !isOpera) { return "IE"; }; //判断是否IE浏览器 }

原文地址:https://www.cnblogs.com/kttbk/p/7685199.html