我有一个满足的div:
z
和jQuery代码:
<div contenteditable="true" title="sometitle" id="ftext"></div>
如何将#htmtext中的代码附加到#ftext,并在html标记和光标位置进行转换。 (或者只是如何在这个div中获得光标位置)
答案 0 :(得分:0)
不确定您在问什么,或者是这两个问题:1)如何将$('#htmtext')
上的内容发送到$('#ftext')
?
//get the html contents of an element
var stuff = $('#htmtext').html();
//add the html to an element
$('#ftext').append(stuff)
获取光标位置,即answered here: