asp:FileUpload 或 input:file 的帮助文本

发布于 2024-09-07 09:47:21 字数 300 浏览 0 评论 0原文

我想知道 是否可以使用 input:file

URL: http://www.kryogenix.org/code/browser/labelify/

问候,< br> 纳维尼

I would like to know whether this is possible with input:file

URL: http://www.kryogenix.org/code/browser/labelify/

Regards,
naveenj

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

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

发布评论

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

评论(2

我要还你自由 2024-09-14 09:47:21

您可以有一个输入按钮/文本指向隐藏文件输入。一个粗略的示例如下:

<input type="button" value="Filessssss" onclick="this.nextElementSibling.click();">
<input type="file" style="visibility:hidden;display:absolute;" onchange="this.previousElementSibling.value=this.files[0].name">

然后您可以在按钮或文本上应用labelify
(在 Chrome 上测试)

You can have a input button/text pointing to a hidden file input. A rough example would be like:

<input type="button" value="Filessssss" onclick="this.nextElementSibling.click();">
<input type="file" style="visibility:hidden;display:absolute;" onchange="this.previousElementSibling.value=this.files[0].name">

Then you can apply labelify on the button or text.
(tested on Chrome)

长伴 2024-09-14 09:47:21

我不这么认为。没有简单的方法可以设置 input:file 的样式。您需要使用不同的文件上传机制 - 要么是基于 Flash 的机制,要么是使用新的 HTML5 功能的机制。

I don't think so. There is no simple way that you can style input:file. You need to use a different file upload mechanism - either a flash based one, or one using the new HTML5 features.

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