英 [fɔnt stail] 美 [fɑnt staɪl]
n.字形
javascript fontStyle属性 语法
作用:设置字体的风格。
语法:Object.style.fontStyle=normal|italic|oblique
javascript 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>运行实例 »
点击 "运行实例" 按钮查看在线实例