使用 jQuery 加载多个片段

发布于 2024-11-29 12:09:41 字数 417 浏览 0 评论 0原文

使用 Ajax 加载资源然后替换 #listing#contextActions 的内容的最有效方法是什么?

// Load resource and replace source `listing` with target `listing`.
$('#listing').load('/myuri.php #listing');
// Load resource and replace source `contextActions` with target `contextActions`.
$('#contextActions').load('/myuri.php #contextActions');

当然必须有更好的方法来做到这一点吗?我不喜欢在同一个资源上有两个加载请求的想法!

What is the most efficient way to load a resource using Ajax and then replace the contents of #listing and #contextActions?

// Load resource and replace source `listing` with target `listing`.
$('#listing').load('/myuri.php #listing');
// Load resource and replace source `contextActions` with target `contextActions`.
$('#contextActions').load('/myuri.php #contextActions');

Surely there must be a better way of doing this? I don't like the idea of having two load requests on the very same resource!

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

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

发布评论

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

评论(1

美羊羊 2024-12-06 12:09:41

有一个更好的方法可以做到这一点。

/myuri.php 返回一个 JSON 对象包含 #listing#contextActions 所需的数据,并使用回调来分配它。

$.load('/myuri.php', {}, function (responseText, textStatus, XMLHttpRequest) {
   var data = $.parseJSON(responseText);
   $('#listing').html(data.listing);
   $('#contextActions').html(data.contextActions);
});

There is a better way of doing that.

Have /myuri.php return a JSON object that contains the necessary data both for #listing and #contextActions and use a callback to assign it.

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