如何触发<输入类型=“文件”>使用 jquery 的元素
有没有办法触发以下点击:
<input id="test" type="file">
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法触发以下点击:
<input id="test" type="file">
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
我一直在寻找同样的东西并在以下位置找到了答案
使用 javascript/jquery 触发文件上传对话框
一个运行的例子位于
http://jsfiddle.net/CSvjw/
它只是
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
最初不要在 CSS 中使用 display:none 或 visibility:hidden
在 Jquery: 中
Dont use display:none or visibility:hidden initially in the css
In Jquery:
无法以编程方式触发上传窗口,但是如果您只是想隐藏丑陋的“选择文件”按钮和输入字段,有一个简单的解决方案。
只需使用任何旧技术隐藏输入并添加引用它的标签即可。然后您可以按照您想要的方式设置标签样式。单击标签将触发上传窗口。
例如:
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:
据我所知,出于安全原因,无法以编程方式触发它。您必须明确单击它。
As far as I know, there is no way to trigger it programmatically for security reasons. You got to click it explicitly.
不可能(安全原因)。
Not possible (security reasons).
不,不存在,这是一件好事,因为这对用户来说会非常烦人。用户是否想要上传某些文件仅受控制,就我个人而言,我讨厌一个网站在我访问它时自动将“打开对话框”插入我的鼻子。
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.