添加#!到 jQuery 地址

发布于 2024-11-02 07:43:15 字数 1344 浏览 0 评论 0原文

我正在使用 jquery 地址插件,现在我的 URL 类似于 http://localhost:3000/#/users/1/。我希望它根据 http://code.google.com/web/ajaxcrawling/index.html

这是我的 JS:

$('.likable').find('a').click(function(e) {
        $.address.value($(this).attr('href').replace(/^#/, '').replace('http://'+document.domain,''));
        e.preventDefault();
    });

    $('.ui-show').find('.close').live('click', function(e) {
    history.back();
    e.preventDefault();
  });

  // Setup jQuery Address Listener
    $.address.init(function(event) {

        if ($.address.baseURL() != 'http://' + document.domain) {
            if (location.href.indexOf('#') < 0) {
                // URL has no hash value and is a permalink, e.g. /about/
                // Change address value to that of permalink
                var fullpath = location.href.split('/',4);
                $.address.value(fullpath[3] + '/');
            }
        }

    }).change(function(event) {

        if (event.value != '/') {
      $.get($.address.value(),function(data) {
        // Insert new content
        });
        } else {
            // Remove new content
        }

    });

如何使用 #! 而不是 #

I'm using the jquery address plugin and now my URLs are like http://localhost:3000/#/users/1/. I want it to use #! instead of just # according to the guidelines at http://code.google.com/web/ajaxcrawling/index.html.

Here's my JS:

$('.likable').find('a').click(function(e) {
        $.address.value($(this).attr('href').replace(/^#/, '').replace('http://'+document.domain,''));
        e.preventDefault();
    });

    $('.ui-show').find('.close').live('click', function(e) {
    history.back();
    e.preventDefault();
  });

  // Setup jQuery Address Listener
    $.address.init(function(event) {

        if ($.address.baseURL() != 'http://' + document.domain) {
            if (location.href.indexOf('#') < 0) {
                // URL has no hash value and is a permalink, e.g. /about/
                // Change address value to that of permalink
                var fullpath = location.href.split('/',4);
                $.address.value(fullpath[3] + '/');
            }
        }

    }).change(function(event) {

        if (event.value != '/') {
      $.get($.address.value(),function(data) {
        // Insert new content
        });
        } else {
            // Remove new content
        }

    });

How do I use #! instead of #?

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

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

发布评论

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

评论(2

慕烟庭风 2024-11-09 07:43:15
$.address.crawlable(true);

在您的 init 事件中使用它会使所有 # 自动变为 #!

我希望 在 $(document).ready 事件中加载我的这可以帮助其他有同样问题的人

$.address.crawlable(true);

using that in your init event makes all the # be #! automatically, I loaded mine in a $(document).ready event

I hope this helps other people with the same problem

最后的乘客 2024-11-09 07:43:15

# 实例替换为 #!

Replace the instances of # with #!.

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