如何判断鼠标点击后光标所在的印象笔记正文编辑框元素
印象笔记的正文编辑框不是input和textarea,如何判断鼠标光标在编辑框里面呀
e.target.localName.toLowerCase() === 'input' || e.target.localName.toLowerCase() === 'textarea'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
document.activeElement
暂时用笨办法,将印象笔记正文所有格式的标签都作为条件
e.target.localName.toLowerCase() === 'div'||e.target.localName.toLowerCase() === 'b'