我有一个隐藏可见性的输入文件:
<input type="file" id="fileupload" name="upload" style="visibility: hidden;" />
但我想使用它,而不显示它。我将通过 a-tag(超链接)触发事件。我有:
//that's fine, open file dialog
document.getElementById('fileupload').click();
//can not take the value of file chosen?
var x = document.getElementById('fileupload').value;
console.log(x);
那么如何在不显示输入的情况下获取所选文件?这可能吗?