我有一个包含以下代码的 code.html 文件。
$.ajax({
type: "POST",
datatype: "JSONP",
url: "path",
success: function(msg){
var e = document.createElement("div");
e.id = "ads";
document.body.appendChild(e);
$("#ads").html(msg);
}
});
当我在浏览器中打开 code.html 文件时,它给出了一个错误:
**"XMLHttpRequest cannot load file://..... Origin null is not allowed by Access-Control-Allow-Origin."**
是什么原因造成的,我能做些什么来解决这个问题?