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

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

programmeradmin1浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论