0
location.href
location.replace
document.URL
他の同様の質問からもわかるように、すべての可能なメソッドを統合できますか?JavaScript:同じウィンドウで新しいページを開く方法
location.href
location.replace
document.URL
他の同様の質問からもわかるように、すべての可能なメソッドを統合できますか?JavaScript:同じウィンドウで新しいページを開く方法
var customURL = 'http://www.example.com';
window.location.href = customURL;
window.location.assign(customURL);
// Current page won't get saved in the history:
window.location.replace(customURL);
// Gecko only:
window.document.location = customURL
も参照してください:
URLは、DOMレベル0 document.location.hrefプロパティに代わるものです。ただし、document.location.hrefは設定可能であり、document.URLは設定できません。 –
@AshimSaha実際には、window.location –
ここに表示されているもの - https://developer.mozilla.org/en/Document_Object_Model_%28DOM%29/document.URL –