tinymce文本编辑器无法键入tab解决办法
2021-05-28 22:15
阅读:2856
在config中新增(已有忽略)setup
方法,监听按键
代码
setup: function (editor){ editor.on('keydown', function (evt) { if (evt.keyCode === 9) { if (evt.shiftKey) { editor.execCommand('Outdent'); } else { editor.execCommand('Indent'); } evt.preventDefault(); evt.stopPropagation(); } }); },
代码编辑器也存在此问题,但是暂未找到解决方法,有知道的大佬请评论区留言🤔
{{commentTotal}} 条评论
{{item.nickname}}
{{item.create_date}}
{{item.content}}
- 上拉或点击加载更多 -
- 加载中 -
- 没有更多了 -