当文本区域发生粘贴文本时调用 JavaScript 函数

发布于 2024-12-06 04:31:10 字数 114 浏览 0 评论 0原文

我希望当通过鼠标单击将文本粘贴到文本区域时,文本区域能够调用函数。我无法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若水般的淡然安静女子 2024-12-13 04:31:10

使用 onPaste 事件。据我测试,它适用于 Ctrl+V 粘贴和右键单击>粘贴粘贴。

Use the onPaste event. As far as I've tested it works for Ctrl+V pasting, and right-click>Paste pasting.

妄想挽回 2024-12-13 04:31:10
document.getElementById(<id>).onpaste= function()
{
 //do something
}
document.getElementById(<id>).onpaste= function()
{
 //do something
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文