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

javascript - jquery change method to trigger hidden file input - Stack Overflow

programmeradmin0浏览0评论

I have created a fake file input using an anchor tag and placed a hidden file input beside this, I want to use jquery to add a click event to the anchor tag that triggers the activation of the hidden input box but Im not pletely sure how to achieve this, if anyone could give me some advice that would be great.

Here is my current effort /

I guess Im probably way off with this one, would love some advice on how this can be achieved though

Kyle

I have created a fake file input using an anchor tag and placed a hidden file input beside this, I want to use jquery to add a click event to the anchor tag that triggers the activation of the hidden input box but Im not pletely sure how to achieve this, if anyone could give me some advice that would be great.

Here is my current effort http://jsfiddle/kyllle/CdXP9/

I guess Im probably way off with this one, would love some advice on how this can be achieved though

Kyle

Share Improve this question asked Jul 5, 2011 at 14:07 stylerstyler 16.5k25 gold badges85 silver badges139 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 10

http://jsfiddle/CdXP9/6/

$('#upload').css("visibility", "hidden");

$('#fakeUpload').click(function(e) {
    e.preventDefault();
    $('#upload').trigger('click');   
});

I cannot say for certain that it isn't possible, but js code to automatically upload a file is very much frowned on, and deliberately made difficult. So I think you are probably on a hiding to nothing with this.

Use the click function it will open the browse window- if that's what you want- see http://jsfiddle/CdXP9/5/

发布评论

评论列表(0)

  1. 暂无评论