在IE 8中打印QR码

时间:2013-01-04 08:07:12

标签: c# javascript jquery asp.net-mvc-4 qr-code

我使用jQuery插件生成了QR码。 QR码在我的网页上以 div 呈现。我试图打印网页,但qrcode没有打印在纸上。

我生成QR码的jQuery代码:

 $(document).ready(function () {  
    $('#add1').click(function () {
        $("#table1").remove();
        var string2 = document.getElementById("textinput").value;

        jQuery('#qrcodeTable').qrcode({
            render: "table",
            text: string2
        });
    });
});

在视图中:

@using (Html.BeginForm())
{  
    @Html.TextBoxFor(m => m.encode, new { id = "textinput", style = display:none;" }
}     

<div id="qrcodeTable">         
</div>

编辑:
Taking Print from webpage
Print Preview image

qrcode不会从网页上打印出来。任何建议。

0 个答案:

没有答案