Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想清除文件上传控件的内容。我怎样才能做到这一点
任何帮助
我认为您的意思是要清除文件输入的值对吗?
document.getElementById('file_input_id').value = '';
如果您要清除输入对话框(jQuery):
$('form')[0].reset();
为我工作