jquery更新整个页面同名的类

发布于 2024-11-24 10:35:02 字数 510 浏览 1 评论 0原文

我正在尝试在类 ajax-link 上执行 foreach,以便我可以从 ajax 调用加载文本,但代码仅在页面上的第一个 ajax-link 上更新。该页面中的所有其他内容均未更新。我做错了什么?

    $(document).ready(function(){                   
        $(".ajax-link").each(function(){            
          var href = $(this).attr('href') + '?request=ajax&boo=' + $(this).text(); //URL
          alert(href); // Is It working?
        $(this).load(href); //Create the xmlHttpRequest
     return false; //Stop the HTTP request  
        });                 
    });

I am trying to do a foreach on class ajax-link so i can load text from an ajax call but the code is only upsating on the first ajax-link on the page. All the others in the page are not being updated. What am I doing wrong?

    $(document).ready(function(){                   
        $(".ajax-link").each(function(){            
          var href = $(this).attr('href') + '?request=ajax&boo=' + $(this).text(); //URL
          alert(href); // Is It working?
        $(this).load(href); //Create the xmlHttpRequest
     return false; //Stop the HTTP request  
        });                 
    });

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

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

发布评论

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

评论(1

牵你手 2024-12-01 10:35:02

return false; 将使您脱离 each() 语句。你需要删除它。

return false; will break you out of the each() statement. You need to remove that.

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