我正在使用这个jQuery api 来处理带有状态栏的文件上传。我有以下(工作)代码:
$(".imageinput")
.live("fileuploadadd", function(e, data) {
data.dataType = "json";
})
.live("fileuploadsend", function(e, data) {
data.dataType = "json";
debugger;
$(
'<div id="paragraph"' + createNewParagraphID() + '" class="new paragraph image">' +
'<div class="progressbar"></div>' +
'</div>' +
controlDiv + createNewParagraph()
).insertAfter($(this).parent());
})
.live("fileuploadprogressall", function(e, data) {
data.dataType = "json";
var bar = $(this).parent().next().children().css("width", parseInt(100 * data.loaded / data.total, 10) + "%");
})
.live("fileuploaddone", function(e, data) {
data.dataType = "json";
$.each(data.result, function(index, file) {
console.log("done");
});
});
我需要使用下面的代码从服务器获取有关上传状态的响应。由于可以动态添加元素,因此我需要使用 live 方法。
$(".imageinput").fileupload({
dataType: "json"
});
如何使用动态添加的元素在此 api 中设置数据类型?