将Jquery加载内容添加到现有的div内容中
好吧,现在我基本上有像这样的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 get() 函数 而不是 load()。
You could use the get()-function instead of load().