HTML - 我无法从只读输入类型复制值
我有一个输入设置为只读
<input type="text" placeholder="{some variable}" class="form-control" readonly>
当我在 Chrome 中打开它时,我无法复制文本,这很重要。我也尝试过“禁用”状态,但同样的问题。
设置代码以便我可以从浏览器复制值的方法是什么?
非常感谢!
I have an input set to read-only
<input type="text" placeholder="{some variable}" class="form-control" readonly>
When I open this in chrome, I cannot copy the text, which is important. I have tried also 'disabled' status, but the same issue.
What is the way to set the code so I can copy the value from the browser?
Big thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置该输入场的
value
而不是占位符:You need to set the
value
of that input-field instead of the placeholder: