修复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编辑内容无法保存,并且无法上传图片或者文件