如何使用 JavaScript 设置字体的样式是:正常、斜体或倾斜?


要设置字体的样式,使用 fontStyle 属性。你可以尝试运行以下代码来用 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 Style</button>
      <script>
         function display() {
            document.getElementById("myID").style.fontFamily = "verdana,sans-serif";
            document.getElementById("myID").style.fontStyle = "italic";
         }
      </script>
   </body>
</html>

更新于:2020-06-23

93 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告