HTML DOM fontStyle 属性

定义和用法

fontStyle 属性设置字体的风格。

语法:

  1. Object.style.fontStyle=normal|italic|oblique

可能的值

描述
normal 默认。浏览器显示一个标准的字体。
italic 浏览器会显示一个斜体的字体。
oblique 浏览器会显示一个倾斜的字体。

实例

本例向文本添加斜体样式:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function setFontStyle()
  5. {
  6. document.getElementById("p1").style.fontStyle="italic";
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <p id="p1">This is an example paragraph.</p>
  13.  
  14. <input type="button" onclick="setFontStyle()"
  15. value="Change font-style" />
  16.  
  17. </body>
  18. </html>