HTML
<input id="videoInput" type="file" style="display: none" />
<button type="submit" id="videoUploadInput">上传文件</button>
JS
$('#videoUploadInput').click(function (e) {
e.preventDefault()
setTimeout(function() {
document.getElementById('videoInput').click()
}, 2000)
})
初步定位原因是click事件是由回调函数调起的,此时event.isTrusted是false(此属性目前只在IE和火狐支持),而非用户主动调起的,即此事件是不被浏览器信任的。
http://stackoverflow.com/ques...
http://stackoverflow.com/ques...
一、延时的2000改成1000
链接描述
二、延时处理的函数,立即执行
setTimeout((function(){})(),2000)