如何使<输入类型=“文件” >>可编辑吗?

发布于 2024-10-05 04:03:00 字数 200 浏览 2 评论 0 原文

我找到了一些示例,解释了如何使输入类型=文件不可编辑。 就像

但我在 Visual Studio 中做了测试应用程序,发现 默认情况下不可编辑。

如何使其可编辑?

谢谢

I have found some examples that explains how to make input type=file to be non editable.
like <input type="file" onkeydown="blur()" />

But I made test application in Visual Studio and find out that <input type="file" /> in non editable by default.

How to make it editable?

thanks

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

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

发布评论

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

评论(2

云淡月浅 2024-10-12 04:03:00

元素的行为由浏览器严格控制,您不能强迫它们做除它们想做的事情之外的任何事情。一般来说,现代浏览器只允许使用文件选择器来选择要上传的文件。您的 Javascript 代码无法设置该值,并且只能看到尾部文件名(不带前缀目录名的名称)之外的任何内容。

The behavior of <input type="file"> elements is very strictly controlled by browsers, and you cannot force them to do anything other than what they want to do. Generally, modern browsers will only allow a file picker to be used for selecting a file for upload. Your Javascript code can't set the value and can't see anything more than the tail file name (the name without prefixing directory names).

反目相谮 2024-10-12 04:03:00

以下 jquery 插件可以帮助使输入类型=“文件”可编辑。

http://www.appelsiini.net/projects/filestyle

The following jquery plugin can help in making a intput type="File" editable.

http://www.appelsiini.net/projects/filestyle

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