如何使用 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>

更新于: 2019 年 7 月 30 日

800 次浏览

开启你的 职业生涯

完成课程获得认证

开始
广告
© . All rights reserved.