我正在执行下面的代码。我在视图中获取结果,但在Firebug的控制台选项卡中没有获取http请求信息。
$.ajax({
// url: url+'merge_code/gatTabContentByTabId', secured http issue
url: 'http://localhost/crm_v2/merge_code/gatTabContentByTabId',
//async: false,
type: "POST",
data: {tab_id:tab_id},
cache: false,
dataType: "text",
success:function(responce, textStatus, jqXHR){
console.log(responce);
$("table.content_table").html("");
$("table.content_table").html(responce);
},
error: function(jqXHR, textStatus, errorThrown){
alert(textStatus);
}
});