我正在创建一个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" />');
这应该工作。