Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะกำหนดขนาดตัวอักษรของข้อความด้วย JavaScript ได้อย่างไร?


ในการกำหนดขนาดฟอนต์ ให้ใช้ fontSize คุณสมบัติในจาวาสคริปต์ คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อกำหนดขนาดตัวอักษรของข้อความด้วย 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 and Size</button>
      
      <script>
         function display() {
            document.getElementById("myID").style.fontFamily = "verdana,sans-serif";
            document.getElementById("myID").style.fontSize = "smaller";
         }
      </script>
      
   </body>
</html>