var str = "foo";
var arr= ["the","ff","gg"];
arr[1]='<a href = "www.google.com">str</a>'
在第3行,它打印&#34; str&#34;但我想打印&#34; foo&#34;。 那我怎么能这样做呢?
答案 0 :(得分:0)
似乎你想要:
arr[1] = '<a href = "www.google.com">' + str + '</a>';
在字符串文字内部,str
没有任何意义。
要打印,您可能需要使用console.log
。