我在myexample.com/page中window.location.replace = window.location.hostname + '/something'
,它将变为myexample.com/page/myexample.com/page/something
如何进行完全重定向?
答案 0 :(得分:1)
使用window.location.href
,这是窗口的当前位置。
要确定,请检查最后一个字符是否为/
。
var current = window.location.href;
var append = current.slice(-1) === '/' ? 'something' : '/something';
window.location = current + append;
更多信息:https://developer.mozilla.org/en-US/docs/Web/API/Window/location