HTML DOM font 属性

定义和用法

font 属性在一个声明中设置所有字体属性。

语法:

  1. Object.style.font=value

可能的值

描述
- fontStyle - fontVariant - fontWeight - fontSize/lineHeight - fontFamily 设置字体的属性。
caption 为控件定义字体(比如按钮、下拉列表等)。
icon 定义用于标注图标的字体。
menu 定义菜单中使用的字体。
message-box 定义对话框中使用的字体。
small-caption 定义用于标注小型控件的字体。
status-bar 定义在窗口状态栏中使用的字体。

实例

本例改变文本的字体:

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