jquery多重加载

发布于 2024-08-17 23:45:46 字数 283 浏览 1 评论 0原文

是否可以使用 $.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 技术交流群。

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

发布评论

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

评论(1

深海夜未眠 2024-08-24 23:45:46

如果您只想将这两个 div 加载到同一个容器中,您可以使用以下方法:

$("selector").load("/url #what, #when");

您可以在 URL 后面添加任何选择器,只要选择器和 url 之间有空格即可。

所以使用这个 HTML:

<div id="container"></div>

和这个 jQuery:

$("#container").load("/url #what, #when");

你会得到:

<div id="container">
   <div id="what"> ... </div>
   <div id="when"> ... </div>
</div>

If you wanted to load just those two divs into the same container, you would use this:

$("selector").load("/url #what, #when");

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:

<div id="container"></div>

And this jQuery:

$("#container").load("/url #what, #when");

You would get:

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