如何重置IE中的文件输入,我使用了以下内容,但它在chrome和FF中有效,但在IE中不起作用
fileInputElement.value=""
IE中有什么替代方案?

最佳答案

如果fileInputElementfileInputForm的形式单独存在,则可以执行以下操作:

window.fileInputForm.reset();

否则,对于IE,您将不得不用克隆替换元素:
fileInputElement.parentNode.replaceChild(
    fileInputElement.cloneNode(true),
    fileInputElement
);

关于javascript - 如何重置(清除)文件输入,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9011644/

10-14 18:59