Javascript 参考手册

HTML DOM 对象

Style font 属性

Style 对象

定义和用法

font 属性以速记形式设置或返回最多六个独立的字体属性。

通过该属性,您可以设置/返回:

  • font-style

  • font-variant

  • font-weight

  • font-size

  • line-height

  • font-family

上述的属性,也可以设置单独的样式属性。强烈建议使用单独的属性这样有更好的可控性。

语法

设置 font 属性:

Object.style.font="[style variant weight size/lineHeight family]
or [reserved word]"

返回 font 属性:

Object.style.font

提示:font 属性没有默认值。

描述
style设置字体样式。
variant设置文本以小型大写字母字体显示。
weight设置字体粗细。
size设置字体尺寸。
lineHeight设置行与行之间的距离。
family设置字体系列。
caption为控件定义字体(比如按钮、下拉列表等)。
icon定义用于标注图标的字体。
menu定义菜单中使用的字体。
message-box定义对话框中使用的字体。
small-caption定义小型控件中使用的字体。
status-bar定义窗口状态栏中使用的字体。
inheritfont 属性的值从父元素继承。

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 font 属性。

注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有规定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。

实例

实例

更改文本的字体:

<html>

<head>

<script>

function displayResult()

{

document.getElementById("p1").style.font="italic bold 20px arial,serif";

}

</script>

</head>

<body>


<p id="p1">This is some text.</p>

<br>


<button type="button" onclick="displayResult()">Change font</button>


</body>

</html>
尝试一下 »

Style 对象

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号