fontsize()

优质
小牛编辑
131浏览
2023-12-01

fontsize 方法

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

语法:

  stringObject.fontsize( size );

参数说明:

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

示例:

  var Str = "graybobo",
      s = Str.fontsize( 3 );

  console.log( s );

结果:

  >>>
  <font size="3">graybobo</font>