最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Unable to click input type="file" in windows safari browser - Stack Overflow

programmeradmin1浏览0评论

Here is my html code

<input type="button" id="btn" value="UPLOAD" />
<input id="fileupload" type="file" style="display:none;" />

here is jquery code

 $('#btn').click(function () {
            $('#fileupload').click();
        });

It works as expected in Chrome and in windows safari doesn't do any thing.And i checked no error in console. Here is a jsfiddle

Here is my html code

<input type="button" id="btn" value="UPLOAD" />
<input id="fileupload" type="file" style="display:none;" />

here is jquery code

 $('#btn').click(function () {
            $('#fileupload').click();
        });

It works as expected in Chrome and in windows safari doesn't do any thing.And i checked no error in console. Here is a jsfiddle

Share Improve this question asked Aug 30, 2013 at 10:56 iJadeiJade 23.9k58 gold badges160 silver badges250 bronze badges 1
  • 2 Does it work if the fileupload element isn't hidden? – Barmar Commented Aug 30, 2013 at 10:59
Add a ment  | 

2 Answers 2

Reset to default 12

try hiding input file using the below code instead of display:none;

 opacity:0;width:0px;height:0px;

You can also do:

input[type="file"] {
    visibility: hidden;
    position: absolute;
}
发布评论

评论列表(0)

  1. 暂无评论