文件输入字段替换
<input type="file" />
我可以用一个简单的按钮替换文件输入字段(上面):
<button type="submit">Upload</button>
文件输入不太适合设计,并且样式设置很痛苦,因此如果可以使用按钮代替文件上传,那也是跨浏览器兼容,那就太棒了!
谢谢!
<input type="file" />
Can I replace the file input field (above) with a simple button:
<button type="submit">Upload</button>
File input doesn't fit nicely into the design, and styling it is a pain so if its possible to use a button instead for file uploading, thats also cross-browser compatible, that'd be awesome!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1-您无法使用按钮调用打开的对话框,您只能使用输入文件字段或使用 Flash 组件显示对话框。
2-您可以通过“使用CSS”将输入文件放在按钮上并将该输入文件设置为透明来解决此问题,这样用户看起来就像在单击按钮,但实际上他正在单击透明输入文件。
示例: http://www.quirksmode.org/dom/inputfile .html
1- You can't call the open dialog using a button, you can just show the dialog using the input file field, or using a flash component.
2- You can work around this by putting input file on a button "using CSS" and set this input file transparent so it will look like the user is clicking on the button but infact he is clicking on the transparent input file.
Sample: http://www.quirksmode.org/dom/inputfile.html
您可以使用 CSS 和 DOM 设置输入类型文件的样式
请参阅此页面
You can style with CSS and DOM the input type file
See this page