无论如何,我可以在客户端javascript释放文件句柄吗?我在 IE 8 中尝试了该测试,但没有发生该问题。

任何帮助表示赞赏。

最佳答案

我可以在 IE 11 中如下释放文件处理程序。

    document.getElementById("fileToUpload").value=""; // input file field
    document.getElementById("uploadForm").reset(); // form that containing input file field

关于javascript - IE 11 在使用 HTML input=file 标签时锁定文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35055123/

10-09 20:05