JavaScript:我不能在JS中使用CSS

时间:2013-10-04 19:59:50

标签: javascript css

如何在JS中使用CSS?

我的代码是:(请查看我附上的图片。)

如何在document.write中编写ID?enter image description here

3 个答案:

答案 0 :(得分:2)

应该是document.write('<h1 id="text">Your name is '+userName);注意不同的引号。目前,您正在使用您在id属性中使用的引号关闭JS字符串。

答案 1 :(得分:0)

为类使用单引号而不是第二组双引号。或者你也可以反斜杠双引号。

答案 2 :(得分:0)

你需要改变这个:

document.write("<h1 id="text">Your name is " +username);

到此:

document.write('<h1 id="text">Your name is ' +username);`

或者,你可以像这样逃避引号:

document.write("<h1 id=\"text\">Your name is " +username);

您对JavaScript解析器感到困惑,它认为您在打开属性时正在关闭字符串。