小码哥的IT人生

HTML DOM font 属性

JavaScript基础 2022-06-08 14:51:08小码哥的IT人生shichen

HTML DOM font 属性

定义和用法

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

语法:

Object.style.font=value

可能的值

描述
  1. fontStyle
  2. fontVariant
  3. fontWeight
  4. fontSize/lineHeight
  5. 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>

TIY

完整实例【改变文本的字体】:

<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 font" />
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024