在 JavaScript 的 ES6 版本中,引入了文字。 JavaScript 包含物件文字、陣列文字、數字文字、RegExp 文字等。此外,它還包含字串文字。
字串文字允許我們創建不帶任何反斜線字元的多行字串,在引號中添加任何單字或句子,以及在字串之間添加變數和數學表達式。
使用者可以依照以下語法在 ECMAScript 6 中使用模板字串文字。
let string = `This is template literal string!`;
在上面的語法中,我們使用反引號 (``) 來建立模板文字字串。
在下面的範例中,我們使用模板文字字串來建立多行字串。每當我們建立帶有引號的字串時,我們都需要使用「
」字元來建立新行,但是使用字串文字,我們可以透過在新行中寫入字串來實現。
在 string1 中,新行是透過在新行中寫入字串來建立的,而在 string2 中,我們使用「
」字元來建立新行。使用者可以觀察輸出中的 string1 和 string2,它們看起來是相同的。
let string1 = `This is first line. This is the second line. This is the third line. This is the fourth line.`; console.log(string1); // added character to create a multiline string. let string2 = "Welcome on the TutorialsPoint!"; console.log(string2);
我們可以使用模板字串文字在字串內加上引號。當我們建立帶有雙引號的字串時,我們只能為該字串添加單引號,而當我們建立帶有單引號的字串時,我們也只能為該字串添加雙引號。
我們使用字串文字在 stringQuote 變數的字串中加入了單引號。
<html> <body> <h2>Using the <i>template string literals</i> to add quotes in the string.</h2> <div id = "output"></div> </body> <script> var output = document.getElementById('output'); let stringQuotes = `This is a 'template string literals' with a quote.`; output.innerHTML += stringQuotes + "<br/>"; let string1 = "This is 'similar to template string literals'." + "<br/>"; output.innerHTML += string1; </script> </html>
在下面的範例中,我們在字串中完成了變數替換。一般來說,要在字串中使用變量,我們需要使用“ ”運算符並連接多個字串,但模板字串文字允許我們直接在字串中添加變數。我們可以在 ${} 表達式中加入變數。
在variableStr變數的值中,我們插入了name、job和timePeriod變數。
<html> <body> <h2>Using the <i>template string literals </i> to add variables in the string.</h2> <div id = "output"> </div> </body> <script> var output = document.getElementById('output'); let name = "Shubham"; let job = "Content writer"; let timePeriod = "1 Year"; let variableStr = `Using template string literals :- ${name} is a ${job} at TutorialsPoint from last ${timePeriod}.`; output.innerHTML += variableStr + "<br/>"; let string = "Using Quotes :- " + name + " is a " + job + " at TutorialsPoint from last " + timePeriod + ". "; output.innerHTML += string + "<br/>"; </script> </html>
在此範例中,我們將使用範本字串文字在字串中加入數學表達式。在 sumString 中,我們在 ${} 內加入了數學表達式。使用者可以看到我們如何在字串中對 num1 和 num2 求和。
此外,我們也對 string2 中的 2 個值進行了乘法運算。
<html> <body> <h2>Using the <i> template string literals </i> to add expression in the string.</h2> <div id = "output"> </div> </body> <script> var output = document.getElementById('output'); let num1 = 10; let num2 = 40; let sumString = `The sum of ${num1} and ${num2} is ${num1 + num2}`; output.innerHTML += sumString + "<br>"; let string2 = `The multiplication of 20 and 5 is ${20 * 5}`; output.innerHTML += string2 + "<br>"; </script> </html>
我們可以使用範本字串文字建立一行 HTML 並將其加入到網頁中。在此範例中,我們使用字串文字建立了 HTML 列表,並使用 的innerHTML 屬性在網頁中新增行 HTML。
<html> <body> <h2>Using the <i>template string literals</i> to add HTML to the document.</h2> <div id = "output"> </div> </body> <script> var output = document.getElementById('output'); let HTMLString = `<ul> <li> One </li> <li> Two </li> <li> Three </li> <li> Four </li> <li> Five </li> </ul>`; output.innerHTML = HTMLString; </script> </html>
使用者學會了在 JavaScript 中使用模板字串文字。我們已經了解如何建立多行字串、變數和表達式替換、添加引號以及使用模板字串文字建立行 HTML。
以上是如何在 ECMAScript 6 中使用模板字串文字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!