【发布时间】:2023-03-03 23:15:02
【问题描述】:
我的页面上有一个文件上传框和一个清除按钮。当我按下清除按钮时,我希望文件上传框中的文本被清除。
以下内容在 Firefox 中有效,但在 IE 中无效(文本保留在那里)。有解决办法吗?
$("#clear").click( function() {
$("#attachment").val("");
//document.myform.attachment.value = "";
})
HTML:
<form name="myform">
<input type="file" name="attachment" id="attachment" />
</form>
<br /><button id="clear">Clear Attachment</button>
【问题讨论】:
标签: javascript jquery html internet-explorer file-upload