百度编辑器(ueditor)@功能之获取坐标
Posted huangzebin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百度编辑器(ueditor)@功能之获取坐标相关的知识,希望对你有一定的参考价值。
//获取百度编辑器的工具类 var domUtils = UE.dom.domUtils; //获取编辑器的坐标 var $ueditor_offset = $("#ueditor_0").offset(); //创建一个临时dom,用于获取当前光标的坐标 var bk_start = ue.selection.getRange().createBookmark().start; //设置临时dom不隐藏 bk_start.style.display = ‘‘; //计算出x坐标 var x = ($ueditor_offset.left + domUtils.getXY(bk_start).x) + "px"; //计算出y坐标 var y = ($ueditor_offset.top + +bk_start.offsetHeight + domUtils.getXY(bk_start).y) + "px"; //移除临时dom $(bk_start).remove();
以上是关于百度编辑器(ueditor)@功能之获取坐标的主要内容,如果未能解决你的问题,请参考以下文章