document.write('<a href=" + x + "> hello </a>');
我已成功完成X打印的值。但是,我无法将它们打印到此代码中。
答案 0 :(得分:3)
因为您没有关闭字符串以进行连接。
document.write('<a href="' + x + '"> hello </a>');
^ ^
答案 1 :(得分:1)
尝试改为:
document.write('<a href="' + x + '"> hello </a>');
答案 2 :(得分:1)
您必须关闭字符串文字才能引用变量x,如下所示:
document.write('<a href="' + x + '"> hello </a>');