带有 jQ​​uery 加载的 bbq.pushState()

发布于 2024-12-09 02:56:17 字数 651 浏览 0 评论 0原文

我正在通过动态加载内容来构建我的网站。我现在有 PushState() 的代码,

$("a.link").click(function(e) { 

        var href = $(this).attr( "href" );
          $.bbq.pushState({ url: href });
          return false;
        });

         $(window).bind( "hashchange", function(e) {
            var url = e.getState( "url" );
            $("a").each(function(){
              var href = $(this).attr( "href" );
            });
          });

          $(window).trigger( "hashchange" );

我想做的是能够做同样的事情,但让它触发 jQuery.load() 函数。

换句话说,我希望能够单击看起来像 About 的链接,并动态地让 div 具有包装器的 id加载 a 的 href。

我该怎么做?

I am building my website with dynamically loading content. I have this code right now for pushState()

$("a.link").click(function(e) { 

        var href = $(this).attr( "href" );
          $.bbq.pushState({ url: href });
          return false;
        });

         $(window).bind( "hashchange", function(e) {
            var url = e.getState( "url" );
            $("a").each(function(){
              var href = $(this).attr( "href" );
            });
          });

          $(window).trigger( "hashchange" );

What I want to do is to be able to do the same thing, but have it trigger the jQuery.load() function.

In other words, I want to be able to click a link that looks like <a href="about.php">About</a> and have the div with the id of wrapper dynamically load the a's href.

How can I do this?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文