有没有办法追加到头?

时间:2011-05-06 09:00:37

标签: jquery

我正在使用一个不允许我编辑源代码的平台。有没有办法在head元素中动态插入一行?也许就像下面的......

$("<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet'>").appendTo("head")

2 个答案:

答案 0 :(得分:1)

是的,.appendTo()因为你有它应该完全正常。和这一个一样:

$('head').append("<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet'>");

但这是我写的方式:

$('head').append(
    $('<link/>', {
        href: 'http://fonts.googleapis.com/css?family=News+Cycle',
        rel: 'stylesheet'
    })
);

答案 1 :(得分:0)

尝试这个...

$("head").append("<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet'>")