jQuery:检测粘贴到所见即所得编辑器中
我正在为我的小 CMS 使用 htmlarea,我想知道是否可以检测用 jQuery 将某些内容粘贴到其中?
I'm using htmlarea for my little CMS, and I was wondering if it's possible to detect if something gets pasted into it with jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将事件侦听器添加到“keydown”的文本区域,
然后寻找 keyCode == 86,这就是粘贴事件。
现在,当用户尝试粘贴时,您可以执行任何您想要发生的操作。
像这样:
我希望有帮助。
Try adding an Event Listener to your textarea for "keydown,"
and then looking out for keyCode == 86, that's the paste event.
Now you can do whatever you want to happen when a user tries to paste.
Like this:
I hope that helps.