在其他浏览器(例如 Chrome)中使用“use strict”指令时,反引号字符在 IE11 中不会被识别为有效字符。
考虑到即使在 Windows 10 用户中仍然广泛使用 IE11,对这种行为的解释是什么?
"use strict";
function doIt() {
let tt;
tt = 50;
alert(`${tt}`);
alert("test");
}
doIt();
错误:{“消息”:“无效字符”、“文件名”:“ http://stacksnippets.net/js ”、“lineno”:18、“colno”:17 }