是否可以在没有 onPaste 处理程序的情况下读取 Chrome 中的剪贴板内容?
是否可以在没有用户交互的情况下读取剪贴板?就像 IE 的 window.clipdData.getData("Text")
一样?
我见过其他问题,例如 是否可以使用 Javascript 读取 Firefox、Safari 和 Chrome 中的剪贴板内容?,但 onpaste 事件不是我们正在寻找的。
Is it possible to read the clipboard without user interaction? Just like IE's window.clipdData.getData("Text")
?
I've seen other questions, such as Is it possible to read the clipboard contents in Firefox, Safari, and Chrome using Javascript?, but the onpaste event is not what we are looking for.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于隐私/安全原因,我认为这是不可能的。您可以循环嗅探剪贴板并捕获其他地方复制的密码。
(如果密码嗅探在 IE 中有效的话,似乎值得一试:D)
I don't think it's possible due to privacy/safety reasons. You could sniff the clipboard in a loop and catch passwords copied elsewere.
( That password sniffing seems worth trying if it works in IE :D )