小编典典

用jQuery添加CSS文件

javascript

我正在创建一个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" />');

但不起作用。

谢谢


阅读 584

收藏
2020-05-01

共1个答案

小编典典

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

这应该工作。

2020-05-01