我在js函数中调用一个css文件,但它有时会加载,有时则不加载。就像在2次尝试之后它会加载。帮助将不胜感激。
JS:
<script>
function PrintContent()
{
w=window.open();
w.document.write($('#'+Get_Current_Report_id).html());
w.document.write("<link rel='stylesheet' type='text/css' href='../../Extra/Reports Pages/Print.css'>");
w.print();
w.close();
}
}
</script>
我也使用了writeln
,但这也没用。
修改
使用它。直到现在一切正常。
$(document).ready(function()
{
$('#PrintContent').click(function()
{
});
});