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


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



描述

此方法使字符串以固定間距字體顯示,就像在 <tt> 標記中一樣。

用法

其語法如下:

string.fixed( )

返回值

返回字符串<tt>標簽。

示例

試試下麵的例子。

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

輸出

<tt>Hello world</tt>

相關用法


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