1. 程式人生 > >js 輸出格式化字符串

js 輸出格式化字符串

blog 格式化 設置顏色 標簽 rip 加粗 取出 comm log

<title>範例2-10</title>
<script language="javascript">
<!--
    // 詩的內容
    var comment = "靜夜思李白床前明月光,疑是地上霜。舉頭望明月,低頭思故鄉。";
    var partial = comment.substring( 0, 3 );    // 取出標題
    partial = partial.bold();            // 標題加粗
    document.write( "<p align=\"center\">" );    // 輸出HTML標簽“<p>”,並設置居中對齊
document.write( partial ); // 輸出標題 partial = comment.slice( 3, 5 ); // 取出作者 document.write( "<br>" ); // 輸出換行標簽<br> document.write( partial ); // 輸出作者 partial = comment.slice( 5, 17 ); // 取出第一句詩文 partial = partial.fontcolor("gray"); //
設置顏色為gray(灰色) document.write( "<br>" ); // 輸出換行標簽 document.write( partial ); // 輸出詩句 partial = comment.slice( 17, 29 ); // 取出第二句詩文 partial = partial.fontcolor("gray"); // 設置顏色為gray(灰色) document.write( "<br>" ); // 輸出換行標簽 document.write( partial ); //
輸出詩句 document.write( "</p>" ); // 輸出HTML標簽“<p>”的結束標簽 --> </script>

js 輸出格式化字符串