我仍然无法使用此代码,我正在尝试使用" onClick"单击后交换图像,在新窗口中打开此新页面,打印这个新打开的窗口并关闭它。它会在新窗口中打开新页面,但它会打印一个空白页面并且无法关闭它,似乎没有以某种方式设置焦点。任何人都可以帮助我吗?谢谢!
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Print it</title>
<!--style type="text/css" media="print"> .noprint {visibility: hidden;} </style-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$(".img-swap").live('click', function() {
if ($(this).attr("class") == "img-swap") {
this.src = this.src.replace("_off","_on");
} else {
this.src = this.src.replace("_on","_off");
}
$(this).toggleClass("on");
});
});
</script>
<script type="text/javascript">
// <!--
Popup = {
init : function () {
$('a.action_print').bind('click', Popup.printIt);
},
printIt : function () {
var win = window.open('doc1.html','Printed','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=350,height=250');
if (win) {
win.document.close();
win.focus();
win.print();
}
return false;
}
}
$(document).ready(function () {
Popup.init();
});
// -->
</script>
</head>
<body>
<br>
CLick to Print:<br><br>
<p style=" padding: 125px 0; text-align: center;">
<a class="action_print" target="Printed"><img src="images/cam_off.png" class="img-swap" width="100" height="100" /></a>
</p>
</body>
</html>
感谢您的期待!
答案 0 :(得分:7)
我想通了,一切正常,我只需要确保我正在打印的文件留在同一个域中。我希望它可以帮助其他需要这样做的人,但欢迎对代码进行任何改进。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Open n Print</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type='text/javascript'>//<![CDATA[
$(function(){
function openPrintWindow(url, name, specs) {
var printWindow = window.open(url, name, specs);
var printAndClose = function () {
if (printWindow.document.readyState == 'complete') {
clearInterval(sched);
printWindow.print();
printWindow.close();
}
}
var sched = setInterval(printAndClose, 200);
};
jQuery(document).ready(function ($) {
$(".test").on("click", function (e) {
var myUrl = $(this).attr('data-url');
alert(myUrl);
e.preventDefault();
openPrintWindow(myUrl, "to_print", "width=700,height=400,_blank");
});
});
});//]]>
</script>
</head>
<body>
</br>
<a class="test" href="javascript:;" data-url= "doc.html">open print and close doc</a>
<br />
</body>
</html>
答案 1 :(得分:0)
printIt
看起来很奇怪。首先关闭document
,然后尝试打印内容。试试这个:
if (win) {
win.focus();
win.print();
win.close();
}
结束document
不会关闭window
,因此win.close()
。另请注意行顺序。
此外,jQuery 1.4已经很老了,您是否考虑过更新为newer version?
答案 2 :(得分:0)
您可以将javascript / JQuery代码放在我放置window.print();
的位置 ScriptManager.RegisterStartupScript(this, typeof(Page), "UpdateMsg", "window.print();", true);
答案 3 :(得分:0)
要正确加载窗口的完整内容,请更改
printWindow.close()
到
printWindow.onfocus=function(){ printWindow.close();}