在 google chrome 以外的所有浏览器中显示警报

Display alert in all browsers other than google chrome

我当前的网页只能在 google chrome 中正常显示。因此,我想让 google chrome 以外的浏览器显示 "please use google chrome".

的弹出窗口

目前我正在使用

alert("Please use Google Chrome");

但这里的问题是它还在 google chrome 中显示该警报。有没有办法只在特定浏览器中显示此警报?

var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;

这会检查浏览器是否 chrome 那么现在您可以做什么:

if (is_chrome != true) {alert("Please use Google Chrome")}

if (is_chrome != true) {prompt("Please use Google Chrome Download it here:", "https://www.google.com/chrome/browser/index.html")}