英 [f?nt weit]? ?美 [fɑnt wet]??
[計(jì)][WIN]字體灰度
javascript fontWeight屬性 語法
作用:設(shè)置字符的粗細(xì)。
語法: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>
運(yùn)行實(shí)例 ?
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例