Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để đặt họ phông chữ cho văn bản bằng JavaScript?


Để đặt họ phông chữ, hãy sử dụng f ontFamily thuộc tính trong JavaScript.

Ví dụ

Bạn có thể thử chạy mã sau để đặt họ phông chữ cho văn bản bằng 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>