HTML - 我无法从只读输入类型复制值

发布于 2025-01-17 11:21:49 字数 230 浏览 0 评论 0原文

我有一个输入设置为只读

<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 技术交流群。

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

发布评论

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

评论(1

独木成林 2025-01-24 11:21:49

您需要设置该输入场的value而不是占位符:

<input type="text" value="{some variable}" class="form-control" readonly>

You need to set the value of that input-field instead of the placeholder:

<input type="text" value="{some variable}" class="form-control" readonly>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文