我必须通过以下方式打印出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 和其他浏览器告诉我页面没有响应。为什么会这样?