當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript String small()用法及代碼示例



描述

此方法使字符串以小字體顯示,就像在 <small> 標記中一樣。

用法

其語法如下:

string.small( )

返回值

返回帶有 <small> 標簽的字符串。

示例

試試下麵的例子。

<html>
   <head>
      <title>JavaScript String small() Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var str = new String("Hello world");
         alert(str.small());
      </script>      
   </body>
</html>

輸出

<small>Hello world</small>

相關用法


注:本文由純淨天空篩選整理自 JavaScript String - small() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。