如何換行字串 - JavaScript?
使用 <br> 標籤換行。
示例
以下為程式碼 −
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <body> <h1 id="headingDemo"> My Name is David Miller </h1> </body> <script> document.getElementById("headingDemo").innerHTML = "My Favourite Subject is JavaScript" + '<br>' + "I live in AUS."; </script> </html>
要執行上述程式,請將檔案儲存為 anyName.html(index.html)。右鍵點選檔案,然後在 VS Code 編輯器中選擇 “使用 Live Server 開啟” 選項。
輸出如下 −
廣告