콘텐츠 편집 가능한 요소 끝에 캐럿을 배치하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-11-09 21:49:02
원래의
968명이 탐색했습니다.

How to Place the Caret at the End of a Contenteditable Element?

콘텐츠 편집 가능한 요소의 캐럿 배치: 종합 가이드

커서를 콘텐츠 편집 가능한 요소의 끝으로 이동하는 것은 어려운 작업일 수 있습니다. 기존 입력 요소와 달리 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿