我从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
。这可能吗?我该怎么做?
此致
巴特
答案 0 :(得分:1)
在这里:只需添加&
即可将两个变量连接起来作为GET参数传递。
$.getJSON(
'functions/charts_hospital.php?hosp='+hospital+'&dept='+department,
function(data){}
);
P.S。:等于运算符是==
。在您的第一个if
中,您将hospital
设置为值Not entered
。