test.html:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<script src="test.js"></script>
</body>
</html>
test.js:
let fName = "Nick";
let lName = "Lee";
document.write('${fName}');
在Chrome上输出:
$ {fName}
我希望是尼克。
答案 0 :(得分:0)
'${fName}'
被视为常规字符串。您应该使用字符串模板:
document.write(`${fName}`);