iOS 9上的Safari不会触发隐藏输入文件

时间:2015-09-22 04:38:37

标签: javascript ios safari mobile-safari ios9

我有一个包含上传字段的网站,input隐藏了display: none;,我有一个div来调用此操作。

它适用于iOS 8,但现在在iOS 9更新后,当我触摸div时没有任何反应。

我尝试使用[0].click()或纯粹的VanillaJS,如document.getElementById('file_input').click(),但无效。

所有这些方法都适用于iOS 5和iOS 8。

如果需要,请在JSFiddle上链接到此示例: https://jsfiddle.net/o1r265tz/6/embedded/result/



$(document).ready(function(){

  $(document).on('click touchstart', '.upload-box', function(e){
    e.stopPropagation();
    $('.form-upload input.file-input').trigger('click');

    $('.debug').append('<p>Clicked!</p>');
    console.log('Clicked!');
    return false;
  });

});
&#13;
.upload-box {
  border: 3px solid #999;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  font-size: 35pt;
  font-family: Arial;
  color: #555;
}
.form-upload {
  display: none;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="upload-box">Click here to upload =D</div>

<form class="form-upload" enctype="multipart/form-data">
  <input class="file-input" id="file_input" type="file">
</form>

<div class="debug"></div>
&#13;
&#13;
&#13;

4 个答案:

答案 0 :(得分:8)

有三件事导致了这个问题:

  1. 在javascript上,删除事件监听器的return false;

  2. 在样式表中,调用操作的元素必须具有属性cursor: pointer;。可能Apple会在这些要求中提出这一要求,以获得有关用户界面的最佳反馈。

  3. 再次在样式表中,我们无法为隐藏输入设置display: none;,因为某些浏览器不接受未显示的元素的点击。

  4. Link to fixed example on JSFiddle

答案 1 :(得分:1)

<input type="file"/>置于假{0}}和position: absolute的虚假按钮之上。您可能还需要设置正确的z-index并使输入100%宽度和高度,以便捕获按钮顶部的单击。

来源:https://forums.meteor.com/t/webkit-on-ios-ignores-trigger-click-on-file-input/29828

答案 2 :(得分:0)

尝试从JS文件中删除touchstart事件或将其替换为mousedown事件。

$(document).on('click', '.upload-box', function(e){
  ...
});

答案 3 :(得分:0)

显然它只是一个 jQuery 的东西。此页面显示它可以工作。

https://codepen.io/VincentBel/pen/wqQOGr

<input id="fileInput" type="file" style='display:none'/>
<button id="button" type="button" onClick="document.getElementById('fileInput').click()">trigger file selection</button>