使用 jquery Ajaxify 链接特定类

发布于 2024-11-27 03:47:25 字数 71 浏览 0 评论 0原文

是否可以在不刷新页面的情况下加载所有带有“ajax”类的链接?应更改完整的正文内容、页面标题和 url,以便可以将其添加为书签。

Is it possible to load all the links with class 'ajax' without refreshing the page? The complete body content should be changed, the page title and the url should so it can be bookmarked.

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

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

发布评论

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

评论(2

笔芯 2024-12-04 03:47:25
$('a.blah').click(function(e){
    e.preventDefault;
    $.get('page.html', function(data){
        $('body').html(data);
    });
});

这可能是最简单的方法,将 blah 替换为您的类,将 page.html 替换为您的页面。

$('a.blah').click(function(e){
    e.preventDefault;
    $.get('page.html', function(data){
        $('body').html(data);
    });
});

That is probably the simplest way, replace blah with your class, and page.html with your page.

城歌 2024-12-04 03:47:25

这应该适用于具有特定类别的所有链接,“目标”是主要内容 div 的 id。它不需要编辑当前的标记。

$('.class').click(function(e) {
    e.preventDefault();
    $('#target').load($(this).attr('href'));
});

This should work for all links with a certain class, 'target' is the id of your main content div. It requires no editing of your current mark up.

$('.class').click(function(e) {
    e.preventDefault();
    $('#target').load($(this).attr('href'));
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文