HTML <输入类型=“文本”... as <输入类型=“文件”
如何将 设置为只读但允许删除其值?
换句话说,如何实现像 这样的行为,您无法手动输入文件路径,但可以删除通过“浏览”按钮注入的内容。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将 设置为只读但允许删除其值?
换句话说,如何实现像 这样的行为,您无法手动输入文件路径,但可以删除通过“浏览”按钮注入的内容。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
jquery:
基本:
jquery:
basic:
考虑此 HTML:
以下 jQuery 函数将仅允许在类
onlydelete
的输入字段中使用 Backspace 键。更新:
我发现您还需要删除键。我想您还希望允许箭头键让用户移动插入符号。对于这些特殊键,您可以使用 keydown。以下代码片段仅允许删除 (46)、退格键 (8) 和箭头键 (37-40)。
更新 2:
添加类的另一个好处是您可以使用 css 轻松设置这些特殊输入的样式。例如:
Considering this HTML:
The following jQuery function will only allow the Backspace key to be used in the input fields with class
onlydelete
.UPDATE:
I've found that you also need the Delete key. And I guess you would also like to allow the arrow keys to let the user move the caret. For these special keys, you can use keydown. The following snippet only allows Delete (46), Backspace (8), and arrow keys (37-40).
UPDATE 2:
The other good thing about adding a class is that you can easily style these special inputs with css. For example:
像这样的东西?
如果您不想将背景更改为灰色,您可以添加以下 css:
演示: http://jsfiddle.net/utw8y/1
更新
仅使用删除或退格键,您可以使用以下 jQuery 代码:
演示: < a href="http://jsfiddle.net/utw8y/2/" rel="nofollow">http://jsfiddle.net/utw8y/2/
something like this?
if you don't want to change the background to grey, you can add and the following css:
Demo: http://jsfiddle.net/utw8y/1
Update
Using only delete or backspace keys you can use the following jQuery code:
Demo: http://jsfiddle.net/utw8y/2/
试试这个:
Try this: