0

I am using the blueimp/jQuery-File-Upload basic plugin.
In a form, the input field for uploading files is, by default, on the right of the button.
A text is also written into.
How can I have the field on the left and how can I get rid the text ?

4

1 回答 1

3

您在谈论的是标准浏览器行为。当你使用<input type='file'>时,浏览器会选择如何渲染它,它可以给它自己的默认文本,比如“选择文件”。我过去使用过一种很好的解决方法,在下面的链接中提供(它将滚动到 Romas 的答案)。基本上你隐藏文件输入,并声明另一个你想要的样式的按钮。

在 JavaScript 中,我可以以编程方式为文件输入元素触发“点击”事件吗?

于 2013-07-05T16:27:24.763 回答