small 方法

把字符串显示为小号字体。

语法:
  1. stringObject.small();
示例:
  1. var Str = "KILLHAPPY",
  2. s = Str.small();
  3. console.log( s );
结果:
  1. >>>
  2. <small>KILLHAPPY</small>