JavaScript fontsize() 方法
定义和用法
fontsize() 方法用于按照指定的尺寸来显示字符串。
语法
- stringObject.fontsize(size)
提示和注释
注释:size 参数必须是从 1 至 7 的数字。
实例
在本例中,"Hello world!" 将显示为大号字:
- <script type="text/javascript">
- var str="Hello world!"
- document.write(str.fontsize(7))
- </script>