我有 php 页面,页面显示在 iframe 中,该页面包含一个 ajax 调用,代码如下所示
$.ajax({
url: "mindex.php",
data: {
model: "test",
handler: "test_123",
data: info
},
type: "post",
dataType: "json",
success: function(response){
if( response.success ){
createChart( response.times );
}else{
$('#chart-container').html( '<p style="margin: 20px 100px; color: rgb(204, 71, 71);">'+response.errors+'</p>' );
}
},
error: function(){
alert("Unknown error Occured");
}
});
运行此页面后,始终显示“发生未知错误”;Firebug 显示无响应(空白)。
此页面在我的本地主机中工作,但在线显示错误请帮助我
提前谢谢