如何在 jQuery 中合并 $.load() 函数
我有代码使用主题标签从我的域上的另一个页面提取内容片段来定位正确的 div,如下所示: $('#content').load('http://www.mysite.com/Default .aspx #homeText');
我必须从单个页面中抓取 5 个不同的 div,而不是调用 $.load() 函数 5 次,是否有一种更有效的方法,不需要 5 次不同的调用同一页面。我假设有一种方法可以解析传入页面,但我不确定最好的方法是什么。有什么建议吗?
I have code pulling in pieces of content from another page on my domain using the hashtag to target the correct div like so: $('#content').load('http://www.mysite.com/Default.aspx #homeText');
I have to grab 5 different div's from a single page, and rather than call the $.load() function 5 times, is there a more efficient way that wont require 5 different calls to the same page. I assume there is a way to parse the incoming page, but I'm not sure what the best way would be. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这种情况下您可以使用 AJAX。
You can use AJAX in this case.
我从来没有尝试过这样的事情,但你应该能够做这样的事情:
I never tried something like this, but you should be able to do something like: