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>