我正在创建一个弹出窗口,我想向该弹出窗口添加一个 css 文件。下面是弹出窗口的代码。我有一个创建弹出窗口的 JavaScript。
<a href="popupwindowcontent.xhtml" title="Print" class="popupwindow">Print1</a>
现在我想向这个弹出窗口添加一个 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" />');
但它不起作用。