當嘗試使用JavaScript 範本文字(例如some ${string} 或「some ${string}」)時,使用者可能會遇到問題其中顯示文字變數名稱而不是它們的值。此問題不限於特定瀏覽器版本或 jQuery 等開發框架。
要解決此問題,使用反引號 (`) 而不是傳統的單引號至關重要或雙引號。反引號通常稱為“重音符號”,位於標準 QWERTY 鍵盤上的數字 1 鍵旁邊。
範例:
// Incorrect approach console.log('categoryName: ${this.categoryName}\ncategoryElements: ${this.categoryElements} '); // Correct approach using backticks console.log(`categoryName: ${this.categoryName}\ncategoryElements: ${this.categoryElements} `);
透過使用反引號,您可以正確呼叫範本文字並顯示所需的變數值。
以上是為什麼我的 JavaScript 模板文字不工作?的詳細內容。更多資訊請關注PHP中文網其他相關文章!