有没有办法appendTo头?
我正在使用一个不允许我编辑源代码的平台。有没有办法在head元素中动态插入一行?也许类似下面...有没有办法appendTo头?
$("<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet'>").appendTo("head")
回答:
是的,.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'
})
);
回答:
试试这个...
$("head").append("<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet'>")
以上是 有没有办法appendTo头? 的全部内容, 来源链接: utcz.com/qa/266138.html