如果正在使用Firefox,请转到其他网址。这对我不起作用。我在俯瞰什么?感谢。
function which() {
if(navigator.userAgent.toLowerCase().indexOf("firefox") != -1)){
window.location.replace = "http://chasms.com"; }
}
答案 0 :(得分:0)
Location.replace()是一个函数,而不是字段,使用
window.location.replace("http://yoururl");
您在评论中所做的并不是对原始问题的回答。
location = 'xx'
相当于location.href = 'xx'
,相当于location.assign('xx')
来电。
另一方面,location.replace('xx')
对历史和安全行为的影响不同。
答案 1 :(得分:0)
您必须将条件更改为:
if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1) {
window.location.replace("http://chasms.com");
}