我正在使用拖放上载区,还可以打开文件浏览器来上载文件。但是我最近发现,使用文件资源管理器时在IE Edge中上传不起作用。拖放在IE Edge中工作正常。在所有其他浏览器中,两者都可以正常工作!
这是我的表格:
# build binary2.bin @ <commit>
$ git checkout -b topic-bug-hunting <commit>
$ git clean -xfd
$ make binary2.bin
这是js部分:
<div id="drop_file_zone" ondrop="upload_file(event)" ondragover="return false">
<div id="drag_upload_file">
<p>DROP FILE(S) HERE</p>
<p>or</p>
<p><input class="browse btn btn-primary" type="button" value="Browse" onclick="file_explorer();"></p>
<input type="file" id="selectfile" name="upload" multiple>
</div>
</div>
所以我的问题是:如何同时使用IE Edge的文件浏览器进行上传?