一些库在Javascript中使用下面给出的语法。语法在Javascript中有效吗?如果没有,那么库在后台是如何处理的?
const button = css`
position: fixed;
bottom: 10%;
left: 50%;
transform: translateX(-50%);
z-index: 200;
`;
这是JS中有效的语法。
的例子:
function fun(){
console.log('triggered..!');
}
fun``
打印"触发…!"在控制台。
这叫做"标签模板"
更多信息请查看此处:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals tagged_templates
当你在js变量的末尾添加闭反引号时,它会将其视为函数调用,函数将被调用,你在反引号之间传递参数。