使用jquery添加break到head

时间:2013-10-05 08:27:13

标签: javascript jquery

我在头标记中添加br但在控制台上出现了一些错误。如何将br添加到head标记。

 var head = document.getElementsByTagName('head')[0];
 var breaks = document.write('<br>');
 head.appendChild(breaks);

我收到此错误。 TypeError:Node.appendChild的参数1不是对象。

任何建议都会很棒。 感谢。

3 个答案:

答案 0 :(得分:1)

我不知道您为什么要尝试添加br ..但head.appendChild需要一个对象:

var br = document.createElement("br");
head.appendChild(br);

答案 1 :(得分:0)

使用document.createElement

var head = document.getElementsByTagName('head')[0];
var breaks = document.createElement('br');
head.appendChild(breaks);

这应该可以解决你的问题

答案 2 :(得分:0)

在JQuery中。

$("head").append("<br>");