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と他のブラウザがページが応答していないことを教えてくれることです。なぜこうなった?