jQuery输入文件点击方法和IE上拒绝访问
我试图仅使用一个按钮作为输入文件,它在 Firefox、Chrome、Safari 中工作正常,但在 IE 中不行...提交表单时我总是收到“访问被拒绝”的消息。
代码:
$('#input_file').click();
有真正的解决办法吗?我在谷歌上浪费了大约2个小时,但我找不到它。
I'm trying to use only a button as input file, it works fine in Firefox, Chrome, Safari but not in IE... I always get 'access denied' when submitting the form.
The code:
$('#input_file').click();
Is there a real fix for it? I wasted about 2 hours on google but I can't find it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我找到了解决方法。
将按钮包裹在标签标签中,如下所示:
单击标签将触发文件输入,而不会使 Internet Explorer 中的表单无效
(在 IE9 和 IE10 中测试)
编辑:将此代码提供给 IE,并为其他浏览器保留 javascript 解决方案。单击标签时,Firefox 不会触发文件输入字段。
I found a way around it.
Wrap the button in label tags like this:
Clicking the label will trigger the file input without invalidating the form in internet explorer
(tested in IE9 & IE10)
EDIT: serve this code to IE and keep the javascript solution for other browsers. Firefox will not trigger the file input field when the label is clicked.
我曾经看到过这段代码,我不记得在哪里,但它是一个解决方法
I once saw this piece of code, I don't remember where but it is a workaround
IE 的安全沙箱“功能”。没有办法绕过它。对不起。我使用JQuery文件输入,但仍然要检测IE并使用IE基本输入,我花了很多时间寻找答案但没有找到任何答案。您可以使用 flash,这是 uploadify 用来绕过 IE 安全性的方法。推荐一下,这是一个非常好的插件。
Security sandbox "feature" of IE. There is no way to get around it. Sorry. I use the JQuery file input, but still have to detect IE and use the IE basic input, I have spend a lot of time looking for answers and haven't found any. You could use flash, which is what uploadify does to get around the security of IE. I recommend it, it's a pretty damn good plug-in.