是否只在Firefox中打开网页的代码?

时间:2014-05-12 06:22:21

标签: javascript html

我正在开发网页,但由于某些原因,我希望它只能在Firefox浏览器中打开。 如果在IE或Chrome等任何其他浏览器中打开,它会自动重定向到我可以显示消息的页面。

1 个答案:

答案 0 :(得分:-1)

if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1){
   location.href = 'www.your.domain.com';
}

Detect Firefox