HTML DOM 범위 개체는 HTML 요소와 연결됩니다. 각각 createElement() 및 getElementById() 메서드를 사용하여 span 요소를 만들고 액세스할 수 있습니다.
구문
다음은 −
의 구문입니다.스팬 객체 생성 -
var a = document.createElement("SPAN");
예시
span 개체의 예를 살펴보겠습니다. -
<!DOCTYPE html> <html> <body> <h1>Span object example</h1> <p>Create a span element by clicking the below button</p> <button onclick="createSpan()">CREATE</button> <p>This is some text inside a p element</p> <script> function createSpan() { var s = document.createElement("SPAN"); var txt = document.createTextNode("This is some text inside the span element"); s.appendChild(txt); document.body.appendChild(s); } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
CREATE 버튼 클릭 시 -