Firefox 插件 - 如何监听网页中的文本突出显示事件
我正在编写一个插件,它需要捕获某人突出显示网页上任何文本的次数。有什么办法可以收听这个活动吗?
谢谢, 卡皮尔
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有专门为此举办的活动。但是您可以监听
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 bywindow.getSelection()
is not empty and/or whether it differs from the previous selection.您可以添加一个选择侦听器。源窗口 (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.