ckeditor 获取焦点之后 会添加 cke_focus的class 阻止enter键的keydown事件不能生效
- ckeditor 获取焦点之后 会添加 cke_focus的class 阻止enter键的keydown事件不能生效
下面是键盘事件的代码
$(document).on("keydown","#component_4_0",function(e){
e.stopPropagation ? e.stopPropagation() : e.cancelBubble=true;
e.preventDefault ? e.preventDefault() : e.returnValue = false ;
window.getSelection().removeAllRanges()
return false;
})
这样写的话 其他的所有按键都是生效的 不过添加了cke_focus这个class之后 enter键不生效
按enter键 会把原来的图片给删除掉
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论