jquery多重加载
是否可以使用 $.load 通过 jquery 一次加载多个项目?例如,我可能有这样的东西:
<div id="test">
<div id="what">
</div>
<div id="when">
</div>
<div id="who">
</div>
</div>
现在假设我想加载 div 的 id 和 id 的时间,但不是 who。这可能吗?
Is it possible to load multiple items at once through jquery using $.load? For exmaple I may have something like this:
<div id="test">
<div id="what">
</div>
<div id="when">
</div>
<div id="who">
</div>
</div>
Now say I wanted to load the div with the id of what and the id of when but not the who. is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想将这两个
div
加载到同一个容器中,您可以使用以下方法:您可以在 URL 后面添加任何选择器,只要选择器和 url 之间有空格即可。
所以使用这个 HTML:
和这个 jQuery:
你会得到:
If you wanted to load just those two
divs
into the same container, you would use this:You can add any selector after the URL as long as there is a space between the selector and the url.
So with this HTML:
And this jQuery:
You would get: