Style fontFamily 属性
Style 对象定义和用法
fontFamily 属性设置或返回元素中文本的字体系列名称/通用字体系列名称的列表。
浏览器会使用它能识别的第一个值。
有两种类型的字体系列的值:
- font-family:一种字体系列名称,如 "verdana" 或 "arial"。
- generic-family:一种通用字体系列名称,如 "serif" 或 "sans-serif"。
提示:始终指定一种通用字体系列名称作为最后选择!
注释:如果字体系列名称中含有空格,请为其加上引号。
提示:查看网页安全字体常用字体组合。
语法
设置 fontFamily 属性:
Object.style.fontFamily="font1, font2, etc.|inherit"
返回 fontFamily 属性:
Object.style.fontFamily
值 | 描述 |
---|---|
font1, font2, etc. | 字体系列名称/通用字体系列名称的表,由逗号分割。 |
inherit | fontFamily 属性的值从父元素继承。 |
浏览器支持
所有主要浏览器都支持 fontFamily 属性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有规定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
实例
实例
更改文本的字体:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>码农教程(runcodex.com)</title>
<script>
function displayResult(){
document.getElementById("p1").style.fontFamily="Impact,Charcoal,sans-serif";
}
</script>
</head>
<body>
<p id="p1">这是一些文本。</p>
<br>
<button type="button" onclick="displayResult()">修改字体</button>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>码农教程(runcodex.com)</title>
<script>
function displayResult(){
document.getElementById("p1").style.fontFamily="Impact,Charcoal,sans-serif";
}
</script>
</head>
<body>
<p id="p1">这是一些文本。</p>
<br>
<button type="button" onclick="displayResult()">修改字体</button>
</body>
</html>
尝试一下 »
Style 对象
点我分享笔记