Style fontFamily 屬性
Style 對象定義和用法
fontFamily 屬性設(shè)置或返回元素中文本的字體系列名稱/通用字體系列名稱的列表。
瀏覽器會使用它能識別的第一個值。
有兩種類型的字體系列的值:
- font-family:一種字體系列名稱,如 "verdana" 或 "arial"。
- generic-family:一種通用字體系列名稱,如 "serif" 或 "sans-serif"。
提示:始終指定一種通用字體系列名稱作為最后選擇!
注釋:如果字體系列名稱中含有空格,請為其加上引號。
提示:查看網(wǎng)頁安全字體常用字體組合。
語法
設(shè)置 fontFamily 屬性:
Object.style.fontFamily="font1, font2, etc.|inherit"
返回 fontFamily 屬性:
Object.style.fontFamily
值 | 描述 |
---|---|
font1, font2, etc. | 字體系列名稱/通用字體系列名稱的表,由逗號分割。 |
inherit | fontFamily 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 fontFamily 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實(shí)例
實(shí)例
更改文本的字體:
<html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.fontFamily="Impact,Charcoal,sans-serif";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Change font</button>
</body>
</html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.fontFamily="Impact,Charcoal,sans-serif";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Change font</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: