这是我得到的函数 - 谢谢stackoverflow中的搜索选项以及我的一些修改 -
<script type="text/javascript">
function imprimirElemento(elem)
{
abrirElemento($(elem).html());
}
function abrirElemento(data)
{
var style = '<style type="text/css">.titulosLightBox {border-bottom: 1px dotted #D1D1D1;color: #333333;font-size: 20px;font-weight: normal;line-height: 18px;margin-bottom: 15px;padding-bottom: 10px;}'+'strong{width:100%;font-weight:bold;}'+'</style>';
var termsAndConditions = window.open('', 'tos', 'height=400,width=600');
termsAndConditions.document.write('<html><head><title>Politica de Privacidad</title>');
termsAndConditions.document.write(style);
termsAndConditions.document.write('</head><body >');
termsAndConditions.document.write(data);
termsAndConditions.document.write('</body></html>');
termsAndConditions.document.close();
termsAndConditions.print();
termsAndConditions.document.close(); /*This seems not to work*/
return true;
}
</script>
效果很好,窗户打开了;文件正在打印样式和窗口未关闭的所有内容,
任何想法为什么?
非常感谢
答案 0 :(得分:2)
尝试
termsAndConditions.close();
答案 1 :(得分:0)
最后一行是错误的,因为您已经关闭了文档对象。试试termsAndConditions.close()