เทมเพลตถูกนำมาใช้ใน ES6 เพื่ออนุญาตให้ฝังนิพจน์ภายในสตริง แทนที่จะใช้เครื่องหมายอัญประกาศ '' หรือ "" พวกเขาใช้เครื่องหมายย้อนกลับ (``) พวกเขาเสนอวิธีการแก้ไขสตริงที่ดีกว่ามากและสามารถฝังนิพจน์ได้ในลักษณะเช่น ${a+b} มันมีรูปแบบที่ดีกว่าตัวดำเนินการ +
ต่อไปนี้เป็นรหัสสำหรับสตริงเทมเพลตใน JavaScript -
ตัวอย่าง
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 20px; font-weight: 500; color: blueviolet; } </style> </head> <body> <h1>Template strings in JavaScript</h1> <div class="result"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to add two numbers and display them</h3> <script> let resEle = document.querySelector(".result"); let a = 22; let b = 44; function add(a, b) { return a + b; } document.querySelector(".Btn").addEventListener("click", () => { resEle.innerHTML = `The sum of ${a} and ${b} = ${add(a, b)}`; }); </script> </body> </html>
ผลลัพธ์
เมื่อคลิกปุ่ม 'คลิกที่นี่' -