$ .getJSON中有超过1个变量

时间:2016-03-27 18:29:44

标签: php json

我从php请求中获取了一个json字符串。我是这样做的:

        department = $("#department").val();
        hospital = $("#hospital").val();

        if (hospital = "Not entered") {
            hospital = "Meander";
        } else {
            hospital = $("#hospital").val();
        }

        console.log('changed'); 
        $.getJSON('functions/charts_hospital.php?hosp=' + hospital, 

我还希望在hosp=' + hospital之后在此字符串中包含部门:dept=' + department。这可能吗?我该怎么做?

此致

巴特

1 个答案:

答案 0 :(得分:1)

在这里:只需添加&即可将两个变量连接起来作为GET参数传递。

$.getJSON(
    'functions/charts_hospital.php?hosp='+hospital+'&dept='+department,
     function(data){}
);

P.S。:等于运算符是==。在您的第一个if中,您将hospital设置为值Not entered