HTML DOM font 属性
定义和用法
font 属性在一个声明中设置所有字体属性。
语法:
- Object.style.font=value
可能的值
值 | 描述 |
---|---|
- fontStyle - fontVariant - fontWeight - fontSize/lineHeight - fontFamily | 设置字体的属性。 |
caption | 为控件定义字体(比如按钮、下拉列表等)。 |
icon | 定义用于标注图标的字体。 |
menu | 定义菜单中使用的字体。 |
message-box | 定义对话框中使用的字体。 |
small-caption | 定义用于标注小型控件的字体。 |
status-bar | 定义在窗口状态栏中使用的字体。 |
实例
本例改变文本的字体:
- <html>
- <head>
- <script type="text/javascript">
- function setFont()
- {
document.getElementById("p1").style.font="italic bold 12px arial,serif";
- }
- </script>
- </head>
- <body>
- <p id="p1">This is an example paragraph.</p>
- <input type="button" onclick="setFont()" value="Change paragraph style" />
- </body>
- </html>