在模糊/聚焦时保留用户选择的文本
在某些文本输入元素 inputElement
上调用 $(inputElement).focus()
时,如何保留用户的文本选择,以便他们在之后仍然可以使用 Ctrl+C在他们最初的选择之上输入一些文本?
我已经考虑过拦截 $(document).blur(...)
事件并防止传播以保留所选文本,但我不确定它是否适用于所有主要浏览器(如果在)全部。
How can I retain the user's text selection when calling $(inputElement).focus()
on some text input element, inputElement
, so that they can still use Ctrl+C after inputting some text top their initial selection?
I have considered intercepting the $(document).blur(...)
event and preventing propagation to keep the selected text, but I'm not sure if it will work across all major browsers, if at all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没有误解...
您可以使用
window.storage
或document.cookie
(以防 window.storage 不可用)...当用户输入时 字段中的文本,您可以根据 id 存储其值(onBlur),然后按 ctrl+C 检索该值并将其放在其他位置(如果 ctrl +z)if i didn't misunderstood...
you can use
window.storage
ordocument.cookie
(in case window.storage is un available)... when the user input text in the field you can store its value(onBlur) against an id and on ctrl+C retrieve the value and put it else where (in case of ctrl+z)