私はphpページを持っています、iframeでページを表示します、そのページはコードが以下に示す1つの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は応答を示しません(空白)。
このページは私のローカルホストで機能しますが、オンラインでエラーが表示されますPlsは私を助けます
事前にthax