修复kindEditor点击加粗, 内容焦点跳动的问题

Posted zou-rong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修复kindEditor点击加粗, 内容焦点跳动的问题相关的知识,希望对你有一定的参考价值。

大概1560~1569行

pos : function() {

var self = this, node = self[0], x = 0, y = 0;
if (node) {
  if (node.getBoundingClientRect) {
  var box = node.getBoundingClientRect(),
  pos = _getScrollPos(self.doc);
  // x = box.left + pos.x;
  x = pos.x;//修复加粗动作时滚动条左右跳动
  // y = box.top + pos.y;
  y = pos.y;//修复加粗动作时滚动条上下跳动
} else {
  while (node) {
  x += node.offsetLeft;
  y += node.offsetTop;
  node = node.offsetParent;
  }
}

}
















以上是关于修复kindEditor点击加粗, 内容焦点跳动的问题的主要内容,如果未能解决你的问题,请参考以下文章

kindeditor,kindeditor编辑内容无法保存,并且无法上传图片或者文件

网站漏洞修复被 提示该网站内容被禁止访问

网页IFR:点击a跳动到当前页指定位置。网页index:插入iframe(src是“IFR”),这个效果怎么实现

KindEditor 文件上传漏洞验证

KindEditor 文件上传漏洞验证

kindeditor上传问题