我必须以下列方式打印出div
我正在做的事情:
function PrintElem(elem)
{
Popup(elem.html());
}
function Popup(data)
{
var mywindow = window.open('', 'to print', 'height=600,width=800');
mywindow.document.write('<html><head><title></title>');
mywindow.document.write('<link rel="stylesheet" href="css/mycss.css" type="text/css" />');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.print();
mywindow.close();
return true;
}
我的问题是在IE上,当我点击按钮时没有任何反应。但是,在Chrome和Firefox上它可以运行。我该怎么做才能正确打印出来?
编辑:我通过以下方式致电print
:
$('#print_it').click(function(){
var element = $('#itinerario');
PrintElem(element);
});
这是print_it
是按钮的ID的位置。
我看到的另一件事是,经过一段时间后,Chrome和其他浏览器会告诉我该页面没有响应。为什么会这样?
答案 0 :(得分:8)
您必须执行mywindow.document.close()
并且窗口名称中没有空格
我假设您从onclick中调用了PrintElem - 如果这是某个链接,则需要在onclick处理程序中返回false!
如果我不得不
,我会怎么做function PrintElem(elem) {
Popup($(elem).html());
}
function Popup(data)
{
var mywindow = window.open('', 'to_print', 'height=600,width=800');
var html = '<html><head><title></title>'+
'<link rel="stylesheet" href="css/mycss.css" type="text/css" />'+
'</head><body onload="window.focus(); window.print(); window.close()">'+
data+
'</body></html>';
mywindow.document.write(html);
mywindow.document.close();
return true;
}
但我不确定window.close()是否会干扰打印
为什么不呢
$(function() {
$('#print_it').click(function(){
popup($('#itinerario').html());
});
});
答案 1 :(得分:1)
我看到你使用mplungjan关于窗口名称中没有空格的说明解决了它,但另一种方法是使用@media print css样式,粗略地说:
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
@media print {
* {
visibility: hidden;
}
.printMe {
visibility: visible;
}
}
</style>
<script type="text/javascript" src="jquery-1.4.4.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#Button1").click(function () {
var divToPrint = $("#div3");
$(divToPrint).addClass("printMe");
window.print();
$(divToPrint).removeClass("printMe");
}
)
}
);
</script>
</head>
<body>
<div id="div1">fhgjghajghhjagjdag</div>
<div id="div2">ytiyrtiyertuyeyiyt</div>
<div id="div3">We want to print this one.</div>
<div id="div4">vnbcxbvmzxbvc,xbv</div>
<div id="buttonContainer">
<input id="Button1" type="button" value="button" />
</div>
</body>
</html>
答案 2 :(得分:1)
在我的情况下,我只需要使用以下代码:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
答案 3 :(得分:0)
在我的情况下,通过在打印前进行焦点来解决此问题。
window.focus()的; window.print();