我的Google Chrome浏览器版本为34.0.1847.116。 我使用以下代码进行打印
$('#print').live("click", function(){
var url = baseUrlReports + "******************";
var txnwindow = window.open(url ,"");
txnwindow.print();
txnwindow.focus();
});
目前,Chrome会在加载预览中挂起。然后我的所有JS都停止响应,我无法刷新页面。没有其他选项可以关闭窗口。谁能告诉我这里到底是什么问题?相同的代码在FireFox和IE上运行良好。
答案 0 :(得分:0)
好的,所以我遇到了同样的问题
对于那些有兴趣看到它的人 - 你可以在这里找到并复制它: http://jsfiddle.net/pvkovalev/vGr7Y/(只需关闭Chrome中的打印弹出窗口,不要使用“打印”或“关闭”按钮,只需关闭窗口本身)
所以这是我的解决方案(我基本上没有在Chrome中调用window.print())
//Begin browser detection section
var isOpera = !! window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
// Opera 8.0+ (UA detection to detect Blink/v8-powered Opera)
var isFirefox = typeof InstallTrigger !== 'undefined'; // Firefox 1.0+
var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
// At least Safari 3+: "[object HTMLElementConstructor]"
var isChrome = !! window.chrome && !isOpera; // Chrome 1+
var isIE = false || !! document.documentMode; // At least IE6
//End browser detection section
//User click on something
$('a[href="#print"]').on("click", function () {
var data = "<div> a lot of HTML code from AJAX call </div>";
CreateWindow(data);
});
function CreateWindow(data) {
var mywindow = window.open('about:blank', '_blank');
var myWindowContents = '<html>' +
'<head>' +
'<title>Results</title>' +
'<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet" type="text/css">' +
'</head>' +
'<body >' + data +
'<script src="http://code.jquery.com/jquery-2.1.0.min.js type="text/javascript">' + '<' + '/script>' +
'<script type="text/javascript">' +
'$(document).ready(function () {' +
'});' +
'<' + '/script>' +
'</body>' +
'</html>';
mywindow.document.write(myWindowContents);
mywindow.document.close();
mywindow.focus();
if (!isChrome) {
mywindow.print();
}
}
您还可以在此处查看我的代码: http://jsfiddle.net/pvkovalev/2pn4p/
这是迄今为止我能找到的最好的解决方法。