我有上传按钮,当用户点击上传然后文件上传到那里但是当他取消文件并选择另一个文件,时间文件名没有显示在chrome中。在所有浏览器中,我只能看到Chrome有问题。这是我的代码
function myfunction() {
var form = document.createElement("abcFORM");
form.method = "post";
form.style.display = "none";
// adding some input elements to the form...
// ...
// adding the file input form.enctype = "multipart/form-data";
var fileInputs = jQuery("input:file");
fileInputs.each(function () {
if (this.value != "") {form.appendChild(this);
}
});
form.action = "my.servlet.path";
form.submit();
}