从 jquery.load() 函数检索数组并在单独的 div 中显示

发布于 2025-01-07 08:28:23 字数 450 浏览 0 评论 0原文

我有以下 jquery.load() 函数

function updateSecondChart(first, second, third, forth){
            $("#test").load("/application/views/public/FactoryData.php?site=" + first + "&time=" + second + "&unit=" + third + "&device=" + forth); }

该函数工作正常并将参数发送到另一个页面,以便我可以执行一些数据库查询,然后它返回结果并将其输出到名为 test 的 div 中。

我遇到的问题是我想返回一个包含 10 行左右的数组作为结果,然后将每一行放在自己的 div 中,而不必发出 10 个请求。

有什么想法可以做到这一点吗?

谢谢

I have the following jquery.load() function

function updateSecondChart(first, second, third, forth){
            $("#test").load("/application/views/public/FactoryData.php?site=" + first + "&time=" + second + "&unit=" + third + "&device=" + forth); }

The function works fine and sends parameters to another page so I can do some database queries and then it returns a result and outputs it in the div called test.

The problem i have is i want to return an array with 10 or so rows as the result and then place each of the rows in its own div without having to make 10 requests.

Any ideas how this can be done?

Thanks

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

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

发布评论

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

评论(1

一杆小烟枪 2025-01-14 08:28:23

使用其他与 AJAX 相关的 jQuery 函数之一(.get().post().ajax()),然后根据需要在回调函数中处理响应。

Use one of the other AJAX-related jQuery functions (.get(), .post(), or .ajax()) and then handle the response however you need to in the callback function.

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