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

[计][WIN]字体灰度

javascript fontWeight属性 语法

作用:设置字符的粗细。

语法:Object.style.fontWeight=value

javascript fontWeight属性 示例

<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>

运行实例 »

点击 "运行实例" 按钮查看在线实例