我有一个生成数据网格的ajax函数。
prof.php
function ajaxFunction(gotid){
$.ajax({
type: 'POST',
url: "profile/ajax/order.php",
data: {id:gotid},
dataType: 'json',
cache: false,
success: function(result) {
for( i = 0, l = result.length; i < l; i++ ) {
var usId = result[i]['user_id'];
var orId = result[i]['order_id'];
var poId = result[i]['product_id'];
var itStat = result[i]['freelancer_st'];
var unitp = result[i]['unit_price'];
.... the rest of the code
该函数工作正常,因为我在prof.php内部的弹出窗口中生成网格,但我改变了主意,我想在外部php页面中发送成功,因此将在list.php中生成网格
这可能吗?你能给我带头吗?
赞赏。
答案 0 :(得分:0)
您只需在成功回调中调用另一个ajax函数。
function ajaxFunction(gotid){
$.ajax({
type: 'POST',
url: "profile/ajax/order.php",
data: {id:gotid},
dataType: 'json',
cache: false,
success: function(result) {
$.ajax({
type: 'POST',
url: 'list.php',
data: { data: JSON.serialize( result ) }
... etc