HTML DOM fontStyle 属性
JavaScript基础 2022-06-08 14:51:27小码哥的IT人生shichen
HTML DOM fontStyle 属性
定义和用法
fontStyle 属性设置字体的风格。
语法:
Object.style.fontStyle=normal|italic|oblique
可能的值
值 | 描述 |
---|---|
normal | 默认。浏览器显示一个标准的字体。 |
italic | 浏览器会显示一个斜体的字体。 |
oblique | 浏览器会显示一个倾斜的字体。 |
实例
本例向文本添加斜体样式:
<html>
<head>
<script type="text/javascript">
function setFontStyle()
{
document.getElementById("p1").style.fontStyle="italic";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph.</p>
<input type="button" onclick="setFontStyle()"
value="Change font-style" />
</body>
</html>
TIY
完整实例【fontStyle - 改变文本的风格】:
<html>
<head>
<script type="text/javascript">
function setFontStyle()
{
document.getElementById("p1").style.fontStyle="italic";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph.</p>
<input type="button" onclick="setFontStyle()" value="Change font-style" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html