如何使<输入类型=“文件” >>可编辑吗?
我找到了一些示例,解释了如何使输入类型=文件不可编辑。
就像
但我在 Visual Studio 中做了测试应用程序,发现 默认情况下不可编辑。
如何使其可编辑?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我找到了一些示例,解释了如何使输入类型=文件不可编辑。
就像
但我在 Visual Studio 中做了测试应用程序,发现 默认情况下不可编辑。
如何使其可编辑?
谢谢
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
元素的行为由浏览器严格控制,您不能强迫它们做除它们想做的事情之外的任何事情。一般来说,现代浏览器只允许使用文件选择器来选择要上传的文件。您的 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).以下 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