javascript - 回调函数中无法调起文件选择的弹窗
给我你的怀抱
给我你的怀抱 2017-05-19 10:39:48
0
2
637

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和火狐支持),而非用户主动调起的,即此事件是不被浏览器信任的。

给我你的怀抱
给我你的怀抱

全部回复(2)
给我你的怀抱

http://stackoverflow.com/ques...

http://stackoverflow.com/ques...

仅有的幸福

一、延时的2000改成1000

链接描述

二、延时处理的函数,立即执行

setTimeout((function(){})(),2000)

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板