我已经这样做了数百次,它似乎就像一个魅力。但我就是不知道这段代码有什么问题。
$.ajax({
url:"<?php echo base_url() ?>admin/sold_item",
data:{qty:sold,tprice:sold_price,id:id,uprice:uprice},
type:"post",
async:true,
success:function(msg){
if(msg=="info_saved"){
$('#sold_data').html('Your Sold Details Have Been Saved');
setTimeout("$.colorbox.close()",1500);
// setTimeout("window.location.reload()",1800);
}
else if(msg=="wrong"){
$('#sold_data').html('Your Information is Incorrect!!Enter Data Again!!');
setTimeout("$.colorbox.close()",1500);
// setTimeout("window.location.reload()",1800);
}
}
})
我正在使用条件进行响应。ajax 调用的 php 代码运行良好,这是我用于 ajax 的确切代码。我有alerted the msg variable
并且firebug console
显示相同,但if condition
只是不工作。可能是什么原因。我有尝试switch ..case
但无济于事。请有人看看我没有看到什么。