Contenteditable 元素中的插入符放置:綜合指南
將遊標移到contenteditable 元素的末尾可能是一項具有挑戰性的末尾任務。與傳統的輸入元素不同,contenteditable 實體預設缺乏將遊標聚焦在末端的固有屬性。
Geowa4 的建議:功能有限
而 Geowa4 提供的解決方案可能對文字區域有效,但它無法解決內容可編輯元素的特定要求。為了有效地將插入符號移至此類元素的末尾,需要採用量身定制的方法。
建議的解決方案:跨瀏覽器相容性
下面的程式碼片段提供了強大的功能該解決方案可在所有支援內容可編輯元素的主要瀏覽器中無縫運作。此方法利用 Range API 的強大功能來智慧地選擇和操作遊標位置。
function setEndOfContenteditable(contentEditableElement) { var range, selection; if (document.createRange) { // Firefox, Chrome, Opera, Safari, IE 9+ range = document.createRange(); // Create a range (a range is like the selection but invisible) range.selectNodeContents(contentEditableElement); // Select the entire contents of the element with the range range.collapse(false); // Collapse the range to the end point. False means collapse to end rather than the start selection = window.getSelection(); // Get the selection object (allows you to change selection) selection.removeAllRanges(); // Remove any selections already made selection.addRange(range); // Make the range you have just created the visible selection } else if (document.selection) { // IE 8 and lower range = document.body.createTextRange(); // Create a range (a range is a like the selection but invisible) range.moveToElementText(contentEditableElement); // Select the entire contents of the element with the range range.collapse(false); // Collapse the range to the end point. False means collapse to end rather than the start range.select(); // Select the range (make it the visible selection) } }
使用範例:
輕鬆將插入符號移到末尾的 contenteditable 元素,只需呼叫 setEndOfContenteditable()函數,並將所需元素作為
elem = document.getElementById('txt1'); // This is the element that you want to move the caret to the end of setEndOfContenteditable(elem);
此解決方案提供了一種全面且可靠的方法來操縱可內容編輯元素中的遊標位置,確保在所有主要瀏覽器上保持一致的行為。
以上是如何將插入符號放在內容可編輯元素的末端?的詳細內容。更多資訊請關注PHP中文網其他相關文章!