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)