当文本区域发生粘贴文本时调用 JavaScript 函数
我希望当通过鼠标单击将文本粘贴到文本区域时,文本区域能够调用函数。我无法使用 onChange
让它按照我想要的方式工作。
我的目标是构建类似 Twitter 推文框的东西。
I would like the text area to call a function when a text is pasted into the text area via mouse clicks. I am not getting it to work the way I wanted using onChange
.
I am aiming to build something like the Twitter tweet box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
onPaste
事件。据我测试,它适用于 Ctrl+V 粘贴和右键单击>粘贴粘贴。Use the
onPaste
event. As far as I've tested it works for Ctrl+V pasting, and right-click>Paste pasting.