JavaScript 中新增回車符號有兩種方法:使用 "\n" 字元或 String.fromCharCode(10) 方法。使用 "\n" 字元直接在字串中插入換行符,使用 String.fromCharCode(10) 方法將 Unicode 碼點 10 轉換為回車符。
如何為JavaScript 字串新增回車
在JavaScript 中,可以透過使用\n
字元或String.fromCharCode(10)
方法為字串新增回車。
使用 \n
字元
最簡單的方法是在字串中直接使用 \n
字元。這會在字串中建立一個換行符,從而將文字分成兩行。例如:
<code class="js">const str = "Hello\nWorld"; console.log(str); // 输出:Hello // World</code>
使用String.fromCharCode(10)
方法
String.fromCharCode(10)
方法可以將給定的Unicode 碼點轉換為對應的字元。回車符的Unicode 碼點為10,因此我們可以使用以下程式碼新增回車符:
<code class="js">const str = "Hello" + String.fromCharCode(10) + "World"; console.log(str); // 输出:Hello // World</code>
範例
以下是一個在JavaScript 中為字串新增回車的具體範例:
<code class="js">// 创建一个字符串 const str = "This is a long string"; // 使用 `\n` 字符添加回车 const newStr = str.replace("long", "long\nstring"); // 使用 `String.fromCharCode(10)` 方法添加回车 const anotherNewStr = str.substring(0, 10) + String.fromCharCode(10) + str.substring(10); // 输出更改后的字符串 console.log(newStr); // 输出:This is a long // string console.log(anotherNewStr); // 输出:This is a // long string</code>
以上是js中怎麼給字串加回車的詳細內容。更多資訊請關注PHP中文網其他相關文章!