我有一个位于https://example.com/a/b/c/d/e/page?query=string
的页面,我想将用户重定向到https://example.com/a/b/c/d/e/otherpage
。我希望这能起作用:
window.location.href = "otherpage"
但它重定向到https://example.com/a/b/otherpage
。我以为像这样的相对URL会使用一个URL,其中最后一个斜杠之后的内容被新URL替换?
我有一个位于https://example.com/a/b/c/d/e/page?query=string
的页面,我想将用户重定向到https://example.com/a/b/c/d/e/otherpage
。我希望这能起作用:
window.location.href = "otherpage"
但它重定向到https://example.com/a/b/otherpage
。我以为像这样的相对URL会使用一个URL,其中最后一个斜杠之后的内容被新URL替换?
1条答案
按热度按时间yhxst69z1#
在Oracle APEX中工作时,最安全的方法是使用apex javascript api。对于导航,有一个名称空间apex.navigation。文档中有一些重定向的例子。