如何重定向到 Crossrider 中的书签 URL?

发布于 2024-11-25 05:43:47 字数 305 浏览 1 评论 0原文

在 crossrider 中,我在后台代码中有一个函数,

function buttonClick() {
  alert(2);
  // simulates similar behavior as an HTTP redirect
  var url = "http://12bubbles.com";    
  window.location.replace(url);
}

安装扩展后,当调用 buttonClicked() 时,alert() 确实弹出,但重定向不起作用。我的代码有问题吗?

In crossrider, I've a function in the background-codes as

function buttonClick() {
  alert(2);
  // simulates similar behavior as an HTTP redirect
  var url = "http://12bubbles.com";    
  window.location.replace(url);
}

After installing the extension, when buttonClicked() is called, the alert() did pop up but the redirect doesn't work. Is something wrong with my codes??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寂寞清仓 2024-12-02 05:43:47

终于想通了。如果有人面临同样的问题,我只能使用他们自己的 API

function buttonClick() {
      alert(2);
      // simulates similar behavior as an HTTP redirect
      var url = "http://12bubbles.com";    
      appAPI.openURL(url, "current");
    }

Finally figured out. If anyone is facing the same problem, I simple had to use their own API

function buttonClick() {
      alert(2);
      // simulates similar behavior as an HTTP redirect
      var url = "http://12bubbles.com";    
      appAPI.openURL(url, "current");
    }
狼性发作 2024-12-02 05:43:47

尝试window.location.href = url;

Try window.location.href = url;

window.location.href = url; 

是正确的语法

window.location.href = url; 

is the proper syntax

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文