1、描述
该方法使字符串以指定的大小显示,就像它在<font size = "size">
标记中一样。
2、语法
它的语法如下:
string.fontsize( size )
3、参数
size:1到7之间的整数,表示1到7之间有符号整数的字符串。
4、返回值
返回带有<font size="size">
标记的字符串。
5、使用示例
<html> <head> <title>JavaScript String fontsize() Method</title> </head> <body> <script type = "text/javascript"> var str = new String("Hello world"); alert(str.fontsize( 3 )); </script> </body> </html>
6、输出
<font size = "3">Hello world</font>