UK [f?nt stail] US [fɑnt sta?l]

n.glyph

JavaScriptのfontStyleプロパティ 構(gòu)文

機(jī)能:フォント スタイルを設(shè)定します。

構(gòu)文: 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>

インスタンスの実行 ?

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します