我使用jquery从URL中检索参数。可能有多个参数需要检索。然后我拿出参数并将它们逐个送到$ .post程序。如何在邮政编码中检索参数?
ALTER TABLE BUPF ADD Column BUPCAT Char(5) NULL
答案 0 :(得分:1)
您可以使用闭包并保留循环变量:
for (var i = 0; i < sURLVariables.length; i++) {
(function(name) {
$.post('php/get_victim.php', {name:name}, function(output) {
//I want to get the "name" variable inside here
console.log(name); //name from above
});
})(sURLVariables[i])
}