如何在JavaScript中插入字符串中的变量,而不进行连接?我知道在PHP中我们可以这样做:$hello = "foo";$my_string = "I pity the $hello";产出:"I pity the foo"我想知道JavaScript中是否也有同样的可能性。使用字符串中的变量而不使用级联-它看起来更简洁和优雅的编写。
3 回答
qq_遁去的一_1
TA贡献1725条经验 获得超7个赞
`String text ${expression}`
模板文字由 后勾(`)(重音)而不是双引号或单引号。
var a = 5;var b = 10;console.log(`Fifteen is ${a + b}.`);// "Fifteen is 15.
奖金:
return ` <div class="${foo}"> ... </div> `;
附带说明:
console.log
:
console.log('%s is %d.', 'Fifteen', 15);// Fifteen is 15.
添加回答
举报
0/150
提交
取消