英 [f?nt weit]? ?美 [fɑnt wet]??

[計(jì)][WIN]字體灰階

javascript fontWeight屬性 語(yǔ)法

作用:設(shè)定字元的粗細(xì)。

語(yǔ)法:Object.style.fontWeight=value

#

javascript fontWeight屬性 範(fàn)例

<html>
<head>
<script type="text/javascript">
function setFontWeight()
{
document.getElementById("p1").style.fontWeight="900";
}
</script>
</head>
<body>

<p id="p1">This is an example paragraph.</p>
<p>This is another example paragraph.</p>

<input type="button" onclick="setFontWeight()"
value="Display bold text" />

</body>
</html>

執(zhí)行實(shí)例 ?

點(diǎn)擊 "執(zhí)行實(shí)例" 按鈕查看線上實(shí)例