我正在开发一个简单的照片上传系统。目前,您可以选择一个文件,当您点击上传时,会出现一个加载GIF,以及上传的百分比。上传完成后,将显示一条警报,其中包含来自阵列的消息,其中包含所有反馈消息。
然而,在我的想法让我无处可去之后,我不得不接受一个数组。
有没有办法使用.txt文件作为我的AJAX请求的responseText?所以说文本文件说Images Uploaded To Server
,我怎么能从文件中获取它,并在上传后将其显示在警报中?
目前,这是上传完成时调用的函数...
xhr.addEventListener("load", function() { document.getElementById("loadingicon").style.display = "none";
alert(message[0]); addIcon();} , false);
我已尝试使用.open("GET", "text.txt", true);
,但收到错误Undefined
。
谁能帮我?
答案 0 :(得分:0)
$(document).ready(function() {
$("#someButton").click(function() {
$.ajax({
url : "helloworld.txt",
dataType: "text",
success : function (data) {
$("#textBox").html(data);
}
});
});
});