我在 Server1 中有一个使用 asp:Chart 显示图表的网页。我的应用程序部署在 Server2 中并尝试如下加载我的 div
$("#div").load("http://server1/charts", function(response, status, xhr) {
if (status == "error") {
alert("Error: " + xhr.status + " " + xhr.statusText);
}
});
不幸的是,我收到了一个错误,因为Error: 0 No Transport
欢迎提出任何建议。