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

JavaScript로 텍스트 장식의 선 유형을 설정하는 방법은 무엇입니까?


텍스트 장식에서 라인 유형을 설정하려면 textDecorationLine을 사용하세요. 재산. 다음 코드를 실행하여 JavaScript로 텍스트 장식의 라인 유형을 반환할 수 있습니다. −

예시

<!DOCTYPE html>
<html>
   <body>
      <div id = "myText" style = "text-decoration: underline;">
         This is demo text.
      </div>
      <br>
      <button onclick="display()"> Set Text Decoration </button>
      <script>
         function display() {
            document.getElementById("myText").style.textDecorationColor = "red";
            document.getElementById("myText").style.textDecorationLine = "overline";
         }
      </script>
   </body>
</html>