标签: javascript html
我正在开发网页,但由于某些原因,我希望它只能在Firefox浏览器中打开。 如果在IE或Chrome等任何其他浏览器中打开,它会自动重定向到我可以显示消息的页面。
答案 0 :(得分:-1)
if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1){ location.href = 'www.your.domain.com'; }
Detect Firefox