如何触发<输入类型=“文件”>使用 jquery 的元素

发布于 2024-10-21 18:10:49 字数 92 浏览 2 评论 0 原文

有没有办法触发以下点击:

<input id="test" type="file">

Is there a way to trigger the click even of :

<input id="test" type="file">

?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

娇纵 2024-10-28 18:10:49

我一直在寻找同样的东西并在以下位置找到了答案
使用 javascript/jquery 触发文件上传对话框
一个运行的例子位于
http://jsfiddle.net/CSvjw/

它只是

$('#test').trigger('click');

I was looking for the same thing and found an answer at
trigger file upload dialog using javascript/jquery
and a running example is at
http://jsfiddle.net/CSvjw/

it simply does

$('#test').trigger('click');
孤凫 2024-10-28 18:10:49

最初不要在 CSS 中使用 display:nonevisibility:hidden

Jquery:

$(document).ready(function() {
 $('#test').hide(); 
});

Dont use display:none or visibility:hidden initially in the css

In Jquery:

$(document).ready(function() {
 $('#test').hide(); 
});
溇涏 2024-10-28 18:10:49

无法以编程方式触发上传窗口,但是如果您只是想隐藏丑陋的“选择文件”按钮和输入字段,有一个简单的解决方案。

只需使用任何旧技术隐藏输入并添加引用它的标签即可。然后您可以按照您想要的方式设置标签样式。单击标签将触发上传窗口。

例如:

<input id="test" type="file" style="display: none" />
<label for="test" class="make-it-look-like-a-button">Upload</label>

There is no way to trigger the upload window programmatically, however if you just want to hide the ugly "choose a file"-button and inputfield, there is a simple solution.

Just hide the input using any old technique and add a label refering to it. You can then style the label any way you want. Clicking the label will trigger the upload window.

For example:

<input id="test" type="file" style="display: none" />
<label for="test" class="make-it-look-like-a-button">Upload</label>

合久必婚 2024-10-28 18:10:49

据我所知,出于安全原因,无法以编程方式触发它。您必须明确单击它。

As far as I know, there is no way to trigger it programmatically for security reasons. You got to click it explicitly.

铃予 2024-10-28 18:10:49

不可能(安全原因)。

Not possible (security reasons).

情深如许 2024-10-28 18:10:49

不,不存在,这是一件好事,因为这对用户来说会非常烦人。用户是否想要上传某些文件仅受控制,就我个人而言,我讨厌一个网站在我访问它时自动将“打开对话框”插入我的鼻子。

No, there isn't, and this is a good thing as it would be extremely annoying for the user. Whether a user wants to upload some file is in is control only, personally I would hate a site automatically sticking an Open Dialog into my nose when I visit it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文