javascript - printing iframe content with jquery - Stack Overflow

i have an iframe:<iframe name="printarea" id="printarea" src="print.php&quo

i have an iframe:

<iframe name="printarea" id="printarea" src="print.php" style="display: none;"></iframe>

i need this iframe to have the style "display: none;" so it is invisible

now when someone clicks a link generated via php:

echo '<a href="#" onclick="print_receipt('.$row['id'].'); return false;"><img src="images/icon-print.png" alt="" /></a>';

i want it to simply change the iframe SRC and print what is in the iframe, however my code is not working at all:

function print_receipt (id)
{
    $('#printarea').attr('src', 'print.php?id='+id);
    $('#printarea').focus();
    $('#printarea').print();
}

so this is what i want: - user clicks on link - iframe content changes based on the link he clicks - iframe content prints

i have an iframe:

<iframe name="printarea" id="printarea" src="print.php" style="display: none;"></iframe>

i need this iframe to have the style "display: none;" so it is invisible

now when someone clicks a link generated via php:

echo '<a href="#" onclick="print_receipt('.$row['id'].'); return false;"><img src="images/icon-print.png" alt="" /></a>';

i want it to simply change the iframe SRC and print what is in the iframe, however my code is not working at all:

function print_receipt (id)
{
    $('#printarea').attr('src', 'print.php?id='+id);
    $('#printarea').focus();
    $('#printarea').print();
}

so this is what i want: - user clicks on link - iframe content changes based on the link he clicks - iframe content prints

Share Improve this question edited Apr 11, 2012 at 8:56 seferov 4,1613 gold badges41 silver badges76 bronze badges asked Aug 2, 2011 at 0:30 scarhandscarhand 4,33724 gold badges67 silver badges93 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4

2 issues:

  1. you'll maybe need to wait until the page is loaded
  2. print() is a method of window-objects

   $('#printarea')
    .load(function(){this.contentWindow.print();$(this).unbind('load');})
     .attr('src', 'print.php?id='+id);
  1. What is $('#printarea').focus(); supposed to achieve? As far as I know .focus() works with form elements and links...
  2. What is $('#printarea').print();? Haven't e across that function in jQuery. If you're using a plugin it would help to mention which one.

So perhaps you'll have more luck with:

function print_receipt (id)
{
    $('#printarea')
       .attr('src', 'print.php?id='+id)
       .css("display","block");
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745644622a4637894.html

相关推荐

  • javascript - printing iframe content with jquery - Stack Overflow

    i have an iframe:<iframe name="printarea" id="printarea" src="print.php&quo

    3小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信