var isChrome = window.navigator.userAgent.indexOf("Chrome") !== -1;
if (isChrome) {
alert("是Chrome浏览器");
} else {
alert("不是Chrome浏览器");
}
05-11 18:15