fontsize 方法

按照指定的尺寸来显示字符串。

语法:
  1. stringObject.fontsize( size );
参数说明:

size - 必需。从 1 至 7 的数字。

示例:
  1. var Str = "graybobo",
  2. s = Str.fontsize( 3 );
  3. console.log( s );
结果:
  1. >>>
  2. <font size="3">graybobo</font>