Firefoxを使用している場合は、別のURLにアクセスしてください。これは私のためには機能しません。私は何を見落としていますか?ありがとう。firefoxの場合はリダイレクト
function which() {
if(navigator.userAgent.toLowerCase().indexOf("firefox") != -1)){
window.location.replace = "http://chasms.com"; }
}
Firefoxを使用している場合は、別のURLにアクセスしてください。これは私のためには機能しません。私は何を見落としていますか?ありがとう。firefoxの場合はリダイレクト
function which() {
if(navigator.userAgent.toLowerCase().indexOf("firefox") != -1)){
window.location.replace = "http://chasms.com"; }
}
Location.replaceは()フィールド、関数ではありません、あなたはあなたのコメントにやったことは実際にあなたの元の質問への答えではありません window.location.replace("http://yoururl");
を使用しています。
location = 'xx'
は、location.href = 'xx'
に相当し、location.assign('xx')
コールに相当します。
一方、location.replace('xx')
は、履歴およびセキュリティの動作に関してこれらとは異なる影響を与えます。あなたがあなたの状態を変更する必要が
:
if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1) {
window.location.replace("http://chasms.com");
}
は最後の作業にそれを得た: ます。 – annotate