从 jquery.load() 函数检索数组并在单独的 div 中显示
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用其他与 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.