当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript fontsize()方法
The fontsize() method is used to display a string in a specified size.
fontsize()方法可用来指定字符串的大小
stringObject.fontsize(size) |
Parameter 参数 | Description 描述 |
---|---|
size | Required. A number that specifies the font size 必选。用数字来指定字体的大小 |
Note: The size parameter must be a number from 1 to 7.
注意:size参数必须是1到7之间的数字
In this example "Hello world!" will be displayed in a large font-size:
在这个举例中”Hello world!“
<script type="text/javascript"> var str="Hello world!" </script> |
fontsize()
How to use fontsize() to display a string in a large font size.
怎样使用fontsize()将字体放大