javascript - File upload with the file control hidden - Stack Overflow

I havea form with a file input which is hidden. There will be abutton on click of which,the open file

I havea form with a file input which is hidden. There will be abutton on click of which, the open file dialogue should pop up and when we select the file, the file should get uploaded to the server. Is this possible ?

I havea form with a file input which is hidden. There will be abutton on click of which, the open file dialogue should pop up and when we select the file, the file should get uploaded to the server. Is this possible ?

Share asked Nov 26, 2012 at 10:40 Ranjan SarmaRanjan Sarma 1,5955 gold badges23 silver badges36 bronze badges 2
  • JQuery is a final option if we donot have any other solution. Problem is - we should not view the file upload control. While IE donot allow a multi part form to be programatically submitted. – Ranjan Sarma Commented Nov 26, 2012 at 10:51
  • uploadify./demos <- I'd remend – OptimusCrime Commented Nov 26, 2012 at 11:03
Add a ment  | 

2 Answers 2

Reset to default 8

If you set the display to none, it won't work in webkit browsers. But you can set the opacity, width and height to zero, and then call the click event when the other button is clicked.

Here is a working example http://jsfiddle/jcVL5/

***Edit: I just saw "the file should get uploaded to the server". You will have to explain what server side language you are using.

<input type="file" id="fileUpload" style="opacity:0; height:0px;width:0px;" />
<input type="button" id="btnUpload" value="test Button" />​

<script>
document.getElementById('btnUpload').onclick = function(){
    document.getElementById('fileUpload').click();
};​
</script>

Have you tried using Fine Uploader? You can see the demo site here http://fineuploader. if this is what you need.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743688529a4490541.html

相关推荐

  • javascript - File upload with the file control hidden - Stack Overflow

    I havea form with a file input which is hidden. There will be abutton on click of which,the open file

    20小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信