Codemirror中添加ondblClick和click事件
我想将 onDblClick 事件添加到 codemirror 2。我发现 onCursorActivity 不会传递该事件,因此我无法通过此方法来过滤事件。 如何在 Codemirror 上实现 onDbClick 事件?
提前致谢。
I would like to add onDblClick event to codemirror 2. I found that onCursorActivity does not deliverer the event so there is no way for me from this method to filter the events.
How can I implement onDbClick event on Codemirror ?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在 CodeMirror 返回的对象上调用
on
方法:您可以在 文档。
You can call
on
method on object returned by CodeMirror:You can find the list of all available events in documentation.
在 getWrapperElement() 方法返回的元素上注册一个处理程序。除非您不仅想检测双击,还想防止发生默认情况(选择鼠标光标下的单词)...在这种情况下,我想需要对核心代码进行一些修改。
Register a handler on the element returned by the getWrapperElement() method. Unless you want to not just detect double-clicks, but also prevent the default (select word under mouse cursor) from occurring... in that case I guess some modification of the core code is needed.
http://jsfiddle.net/yusafkhaliq/NZF53/1/
由于 codemirror 在元素内部渲染指定您可以向元素添加一个 ondblclick 事件,如下所示,双击特定元素将显示行号,荧光笔将呈现没有行号
http://jsfiddle.net/yusafkhaliq/NZF53/1/
Since codemirror renders inside the element specified you can add an ondblclick event to the element, like below the highlighter renders without line numbers once double clicked that specific elements will display line numbers