我将 IE8 与 jQuery 1.9.1 一起使用。我希望用户选择一个 csv 文件。该文件的内容应显示在警报中。到目前为止,我已经能够做到这一点:
function getCsv(filepath) {
$.ajax({
type: "GET",
url: filepath,
dataType: "text",
success: function(data) {
alert(data);
},
error: function(xhr, ajaxOptions, thrownError) {
alert("Status: " + xhr.status + " Error: " + thrownError);
}
});
};
$("#upload").click(function() {
var fname = $("#filename").val();
fname = fname.replace(/\\/g, "/");
fname = "file:///" + fname;
getCsv(fname);
});
当我直接打开 html 文件(通过双击文件)时,这非常有用。但是当我在服务器(IIS 服务器)上部署它时,它会给出错误警报。
我也习惯于jQuery.support.cors = true
避免 CORS 的问题。