标签: jquery forms file input
我的input type=file有问题。我使用jQuery上传了文件 现在我试图在这个输入中设置它,在谷歌浏览器中没有问题,但在Mozilla和IE中它没有用。
input type=file
以下是我的代码的几行:
obj.on('drop', function (e){ var files = e.originalEvent.dataTransfer.files; $('input[type=file]').prop('files',files); }