在线等大神帮忙,关于Editor在IE下插入图片位置不在光标处的问题
ext吧
全部回复
仅看楼主
level 1
华惊虹 楼主
Ext编辑器HtmlEditor扩展图片上传功能后,上传的图片位置不在光标处,跑第一个字符前面去了,而谷歌、火狐等浏览器均正常,如图:
代码:
if (Ext.isIE) {
insertAtCursor(element.outerHTML);
}
else {
var selection = editor.win.getSelection();
if (!selection.isCollapsed) {
selection.deleteFromDocument();
}
selection.getRangeAt(0).insertNode(element);
}
2014年10月30日 03点10分 1
level 2

2015年07月11日 05点07分 4
2015年07月11日 05点07分
2015年07月11日 05点07分
1