单击预选框中的所有内容时选择它吗?
select() 方法似乎只适用于文本区域和输入空间,而且我不太了解 javascript,所以我没有提出任何解决方案。有谁知道当您单击预置框中的所有内容时如何突出显示它?
我想做的是让访问者可以轻松地突出显示预览中的所有内容,以便他们可以复制并粘贴它。我目前正在使用textareas,切换到pres意味着用户无法再给予它焦点,因此他们无法控制a。
The select() method only seems to work with textareas and input spaces, and I don't know javascript very well, so I'm not coming up with any solutions. Does anyone know how to highlight everything in a pre box when you click on it?
What I'm trying to do is make it so a visitor can easily highlight everything in the pre so they can then copy and paste it. I am currently using textareas, and switching to pres mean that the user can no longer give it focus, so they can't do control a.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简而言之,这是不可能的。解决方法可能是创建一个
Simply put, this is not possible. A workaround could be to create a
<textarea readonly="readonly">
and style it like a<pre>
block.