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

JavaScript로 텍스트의 글꼴 모음을 설정하는 방법은 무엇입니까?


글꼴 모음을 설정하려면 fontFamily를 사용하세요. JavaScript의 속성

예시

다음 코드를 실행하여 JavaScript로 텍스트의 글꼴 모음을 설정할 수 있습니다. -

<!DOCTYPE html>
<html>
   <body>
      <h1>Heading 1</h1>
      <p id="myID">
         This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text.
         This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text.
      </p>
      <button type="button" onclick="display()">Set Font Family</button>
      <script>
         function display() {
            document.getElementById("myID").style.fontFamily = "verdana,sans-serif";
         }
      </script>
   </body>
</html>