我正在使用一个不允许我编辑源代码的平台。有没有办法在head元素中动态插入一行?也许就像下面的......
$("<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet'>").appendTo("head")
答案 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'>")