将Jquery加载内容添加到现有的div内容中

发布于 2024-10-27 09:07:50 字数 424 浏览 1 评论 0原文

好吧,现在我基本上有像这样的jquery加载函数

$('#results').load("sources.php?source=1&page=<?=$_GET['page']?>&search=<?=$_GET['search']?>");

,所以它将它加载到结果div中,但在那之后我想运行本质上相同的东西,但

$('#results').load("sources.php?source=2&page=<?=$_GET['page']?>&search=<?=$_GET['search']?>");

我怎样才能做到这一点,所以它只是添加第二个的内容加载到结果 div,而不是仅替换现有内容?

谢谢

well right now I basically have the jquery load function like this

$('#results').load("sources.php?source=1&page=<?=$_GET['page']?>&search=<?=$_GET['search']?>");

so it's loading that to the results div, but right after that i'd like to run essentially the same thing but

$('#results').load("sources.php?source=2&page=<?=$_GET['page']?>&search=<?=$_GET['search']?>");

how could i make it so it simply adds the content of the second load to the results div, as oppose to just replacing the existing content?

Thanks

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

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

发布评论

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

评论(1

拥抱没勇气 2024-11-03 09:07:50

您可以使用 get() 函数 而不是 load()。

$.get(url, function(data) {
   $('#results').append(data);
});

You could use the get()-function instead of load().

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