在页面上使用 jQuery 文件上传从 Excel 粘贴会导致上传

Pasting from Excel with jQuery File Upload on page causes upload

归根结底,我在页面上有两个输入。一个是文本输入,另一个是文件输入。如果我将 Excel 电子表格单元格复制并粘贴到文本输入,它会触发文件上传到文件输入。我想允许复制粘贴而不触发文件上传。

这里的关键是把pasteZone设置为null

$("#fileupload").fileupload({
    pasteZone: null   //make it $(document) or specific container for enabling it
})

Documentation

Credit