如何取消编辑/禁用缓存的输入(文本类型)值?
我有一个 text
类型的输入,我已经从中输入了值 1234
它已保存在缓存中,如下所示。
这里的问题是,选择下一行的文本框。
有没有办法不通过 HTML 标记或 JavaScript 显示 12334
(在屏幕截图中突出显示)?
I have an input of type text
, from which I have already entered value 1234
it has been saved in cache as shown below.
The problem here is that, it is extremely frustrating to select the textbox in the next row.
Is there a way to not to display that 12334
(highlighted in the screenshot) from ever being displayed through HTML markup or javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
作为@John 指出,在现代浏览器上,您可以使用 HTML5 valid
autocomplete
属性,在您的屏幕截图中我看到很多文本框,如果您想在整个表单上禁用自动完成功能,您可以设置此属性直接在form
元素:更多信息:
As @John pointed out, on modern browsers you can use the HTML5 valid
autocomplete
attribute, in your screenshot I see many textboxes, if you want to disable autocompletion on the whole form you can set this attribute directly at theform
element:More info:
要将其应用于所有输入控件,请编写以下代码(使用 jQuery):
To apply this to all input controls, write the code below (using jQuery):