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