这是代码:
$.ajax({
url: "script.php",
success : oneHandler
});
$.ajax({
url: "script.php",
success : twoHandler
});
同时调用这两个函数调用时,是否确保在第一次调用的响应中真正调用了“oneHandler”?换句话说,是否检查了附加的字符串是否匹配?
如果我添加数据怎么办:
dataType: 'json',
data: {"json": "one"} ,
dataType: 'json',
data: {"json": "two"} ,
分别?
如果我使用该post
方法怎么办?