0

我如何通过 ajax 在此功能上发送 2 个或更多 id

function advcust(id) {                      
    $.ajax ({
           url: "php_filter.php?cust=advcust",
           type: "GET",
           data: {CustStatus:id},
           success: function(data){
                    $("#return").html(data)
                    }
        })
}

在这里我只能发送一个 id 但我需要发送 2 个或更多 id

我有两种输入类型来搜索两个单词我可以在 ajax 上发送 2 个 id

4

2 回答 2

2
function advcust(id, anotherID)
{
  $.ajax ({
       url: "php_filter.php?cust=advcust",
       type: "GET",
       data: {CustStatus:id,SomeOverVar:anotherID},
       success: function(data){
                $("#return").html(data)
                }
    })
}
于 2012-05-13T18:30:23.037 回答
0
function advcust(ids) {
    $.ajax ({
        url: "php_filter.php?cust=advcust",
        type: "GET",
        data: {CustStatus: ids},
        success: function(data){
            $("#return").html(data);
        }
    });
}

var ids = [];
ids.push(id1);
ids.push(id2);
advcust(ids);

然后,您可以在 PHP 中以数组的形式访问客户 ID:

<?php

$customerIds = $_GET['CustStatus'];

foreach ($customerIds as $customerId) {
    // do something...
}
于 2012-05-13T18:34:47.717 回答