請問用js如何給字串中加換行符

時間 2021-10-20 12:47:34

1樓:行在月夜

用js如何給字串中加換行符的具體操作步驟如下:

1、首先,在資料夾下建立index.html檔案,然後在html檔案中新增基本的頁面標籤:

2、然後,在內部的迴圈中,每執行一次,就給字串新增一個換行符,然後最後通過彈窗的方式將字串顯示出來:

4、通常使用js都是會將資料顯示在html頁面上,這時換行符就不能用"\n"了,此時應該使用"

"。修改index.html檔案:

5、最後,修改完index.html檔案後,再次使用瀏覽器開啟index.html檔案,這樣就成功在頁面上顯示用js處理過的字串了:

2樓:沙士3世

var s="1111111111111111111

2222222222222222";這樣就可以了,你再用document.write(s)測試一下

3樓:

var msg="111+("\n")+222";

4樓:only熙媛

\n 左右兩邊需要空格

5樓:匿名使用者

我看你是在canvas裡寫字,換行。這裡filltext不會自己換行,需要另寫方法。

參考

js字串如何擷取最後字元,js字串如何擷取最後一個字元

天糖的信 用slice 方法 var a hello var b a.slice 1 console.log b bug集散地 var str 11122233344s var lastc str.substring str.length 1 console.log lastc s js字串如何擷取...

js字串拆分,如何用js把字串中的字母和數字拆分開

水閏愛樹木 字串的拆分可以使用函式 split 功能 使用一個指定的分隔符把一個字串分割儲存到陣列 例子 str jpg bmp gif ico png arr thestring.split arr是一個包含字元值 jpg bmp gif ico 和 png 的陣列 擴充套件資料 其他的擷取函式的...

python如何向已有中加入字串

其實啊不知道 把文件全部作為一個字串,字串可以相加,如在 1.doc 裡新增 s 和 d 用 file open 1.doc r string file.read string s n string nd file2 open 2.doc w file2.write string with open...