我想將所選文本從一個內容div移動到另一個內容div。所選文本應附加在另一個div的當前插入位置。有沒有辦法根據div id獲得護理職位?我在所有來源中觀察到,獲得的脫字符位置總是基於選擇。通過單擊按鈕將選定的文本從一個內容div移動到另一個內容div
<body >
<div contenteditable="false" id='selectfromhere' >
some text select
</div>
<div contenteditable="true" id='movehere' >
some
</div>
<button>Click me</button>
</body>
獲取CONTENTEDITABLE格鏈接插入位置將返回selectfromhere格的插入位置。你可以讓我知道,如何獲得movehere div的插入位置,以便我可以將文本從選擇區域移動到插入位置 – seetha
在此函數內......「var update = function(){ $( '(#)「)。html(getCaretPosition(this)); }; $('#contentbox')。on(」mousedown mouseup keydown keyup「,update); 」您是否確定將#contentbox替換爲# movehere而不是#selectfromhere –