js iframe富文本 光标移到文本最后
开发到一个富文本输入框,用iframe做的,现在加一个功能,ctrl+enter在输入框内回车,同时将光标移到换行的那行去显示出来,
参考别人的代码:
//续加<br>ff $("iframe").contents().find("body").append("<br>ff"); var obj=$("iframe").contents().find("body"); obj.focus(); var len = obj.html().length; if (document.selection) { var sel = obj.createTextRange(); sel.moveStart('character',len); sel.collapse(true); sel.select(); } else if (typeof obj.selectionStart == 'number' && typeof obj.selectionEnd == 'number') { obj.selectionStart = obj.selectionEnd = len; }