Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM insertAdjacentText( ) 메서드

<시간/>

HTML DOM insertAdjacentText() 메서드는 지정된 위치에 텍스트 문자열을 삽입합니다.

구문

다음은 구문입니다 -

positionString 및 text의 매개변수를 사용하여 insertAdjacentText() 호출

node.insertAdjacentText(“positionString”, text)

위치 문자열

여기, "positionString" 다음과 같을 수 있습니다 -

positionString 설명
시작 후 노드 요소의 시작 뒤에 텍스트를 삽입합니다.
종료 노드 요소 뒤에 텍스트를 삽입합니다.
시작 전 노드 요소 앞에 텍스트를 삽입합니다.
이전 노드 요소의 끝에 텍스트를 삽입합니다.

예시

InsertAdjacentText()의 예를 살펴보겠습니다. 방법 -

<!DOCTYPE html>
<html>
<head>
<title>insertAdjacentText()</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>insertAdjacentText( )</legend>
<h1>First Muslim President of India</h1>
<h2 id="president">A.P.J Abdul Kalam</h2>
<input type="button" onclick="rectifyName()" value="Correct Name">
</fieldset>
</form>
<script>
   function rectifyName() {
      var presidentH2 = document.getElementById("president");
      presidentH2.insertAdjacentText("afterbegin", "DR. ");
   }
</script>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

'정확한 이름'을 클릭하기 전에 버튼 -

HTML DOM insertAdjacentText( ) 메서드

'정확한 이름'을 클릭한 후 버튼 -

HTML DOM insertAdjacentText( ) 메서드