admin管理员组文章数量:1201371
This solution works fine in Firefox 3.0+, but IE8/7 is just printing the entire page, not the specific iframe.
This is the function that gets called when the print link is clicked:
var printfunc= function(){
var url = ;
//This iFrame has style="visibility: hidden; position: absolute; left: -9000px;"
var printIFrame = GetObj('PrintIFrame');
printIFrame.src = url;
}
The aspx that gets loaded into the hidden iframe calls the print function on the onload event handler:
<body onload="PrintJS.Print();">
The Print function:
this.Print = function(){
self.focus();
self.print();
return false;
}
I've also tried this with "window" instead of "self". Both solutions work fine in FF but IE doesn't seem to get the scoping right. Any thoughts? A cross-browser solution would be great! Also, I'd rather use CSS print styles, but the content that I'm printing is different than that on the page, hence the need to load html into a hidden iframe.
This solution works fine in Firefox 3.0+, but IE8/7 is just printing the entire page, not the specific iframe.
This is the function that gets called when the print link is clicked:
var printfunc= function(){
var url = http://someurl.aspx;
//This iFrame has style="visibility: hidden; position: absolute; left: -9000px;"
var printIFrame = GetObj('PrintIFrame');
printIFrame.src = url;
}
The aspx that gets loaded into the hidden iframe calls the print function on the onload event handler:
<body onload="PrintJS.Print();">
The Print function:
this.Print = function(){
self.focus();
self.print();
return false;
}
I've also tried this with "window" instead of "self". Both solutions work fine in FF but IE doesn't seem to get the scoping right. Any thoughts? A cross-browser solution would be great! Also, I'd rather use CSS print styles, but the content that I'm printing is different than that on the page, hence the need to load html into a hidden iframe.
Share Improve this question edited Aug 11, 2009 at 22:35 Jack asked Aug 11, 2009 at 16:42 JackJack 5121 gold badge4 silver badges12 bronze badges 1- 1 Is it to a secret printer that noone knows about? (sorry, couldn't resist :) ) – KristoferA Commented Aug 11, 2009 at 16:50
3 Answers
Reset to default 20Solution: In IE, an iframe with visibility: hidden; causes the browser to print the parent. Changing the styles to height:0px; width: 0px; fixes this issue.
Parent Document:
<!doctype html>
<html>
<head>
<script>
function printIframe(iframe_id) {
if (navigator.appName.toUpperCase() == 'MICROSOFT INTERNET EXPLORER') {
document.frames[iframe_id].focus();
document.frames[iframe_id].print();
} else {
window.frames[iframe_id].focus();
window.frames[iframe_id].print();
}
}
</script>
</head>
<body>
<a href="javascript:printIframe('printMe');">Print the iframe.</a>
<iframe id="printMe" src="iframe.html"></iframe>
</body>
</html>
iframe document:
<!doctype html>
<html>
<head></head>
<body>
<p>Print this.</p>
</body>
</html>
From the below link: http://www.eggheadcafe.com/PrintSearchContent.asp?LINKID=449
Try document.parentWindow.print(); instead of self.print()...
本文标签: javascriptPrinting a hidden iFrame in IEStack Overflow
版权声明:本文标题:javascript - Printing a hidden iFrame in IE - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1738567513a2100394.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论