如何在Jquery地址插件中自定义/#/

发布于 2024-08-30 20:33:15 字数 199 浏览 4 评论 0原文

我正在使用 Jquery 插件 Address 来实现深度链接。

生成的网址格式为 www.example.com/#/tab/image,但我需要的是 www.example.com/#tab/image。该插件似乎会自动生成/#/部分。

我想知道有人知道该怎么做吗?或者即使有可能?

我将非常感谢任何帮助。

提前致谢

I'm using the Jquery plugin Address to achieve deep linking.

The generated urls come out in the format www.example.com/#/tab/image, but what I need is www.example.com/#tab/image. The plugin seems to automatically generate the /#/ part.

I wonder does anyone know how to do this? Or even if it's possible?

I would greatly appreciate any help.

Thanks in advance

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

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

发布评论

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

评论(2

忘羡 2024-09-06 20:33:15

有一个名为“严格模式”的插件设置,可以强制您要删除的附加斜杠。您可以通过两种方式完成此操作:

  1. 包含带有附加参数的脚本:

  2. 调用 API 方法

    $.address.strict(false);

There is a plugin setting called "strict mode" that enforces the additional slash that you want to remove. You can do it in two ways:

  1. Include the script with an additional parameter:

  2. Call an API method

    $.address.strict(false);

吃兔兔 2024-09-06 20:33:15

查看文档,我看起来您可以这样做:

$('a').address(function() {  
     return $(this).attr('href').replace(/#\//, '#');  
});

这会将 #/ 替换为 #。

Looking at the documentation, I looks like you can do this:

$('a').address(function() {  
     return $(this).attr('href').replace(/#\//, '#');  
});

This will replace #/ with #.

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