Firefox 插件 - 如何监听网页中的文本突出显示事件

发布于 2024-10-10 21:34:15 字数 70 浏览 6 评论 0原文

我正在编写一个插件,它需要捕获某人突出显示网页上任何文本的次数。有什么办法可以收听这个活动吗?

谢谢, 卡皮尔

I am writing an addon which needs to do capture the no of times someone has highlighted any text on a webpage. Is there any way I can listen to this event?

Thanks,
Kapil

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

可是我不能没有你 2024-10-17 21:34:15

没有专门为此举办的活动。但是您可以监听 mouseup 事件并检查选择是否由 window.getSelection() 不为空和/或是否与之前的选择不同。

There is not a particular event for this. But you can listen to the mouseup event and check whether the selection returned by window.getSelection() is not empty and/or whether it differs from the previous selection.

相对绾红妆 2024-10-17 21:34:15

您可以添加一个选择侦听器。源窗口 (viewSource.js) 执行此操作是为了使行号和列号保持最新。

You could add a selection listener. The Source window (viewSource.js) does this so that it can keep the row and column number up-to-date.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文