用jQuery添加CSS文件

我正在创建一个popupwindow,我想向该popupwindow中添加一个css文件,下面是popupwindow的代码。我有创建一个popupwindow的JavaScript。

<a href="popupwindowcontent.xhtml" title="Print" class="popupwindow">Print1</a>

现在,我想向该popupwindow中添加一个CSS文件。我尝试了类似的东西

$('.popupwindow').append('<link rel="stylesheet" href="css/style2.css" type="text/css" />');

$('head').append('<link rel="stylesheet" href="css/style2.css" type="text/css" />');

但不起作用。

谢谢

回答:

$('head').append('<link rel="stylesheet" href="style2.css" type="text/css" />');

这应该工作。

以上是 用jQuery添加CSS文件 的全部内容, 来源链接: utcz.com/qa/420959.html

回到顶部