1

我使用 jQuery 插件生成了一个二维码。二维码呈现在我网页上的div中。我试图打印网页,但二维码没有打印在纸上。

我的 jQuery 代码生成 QR 码:

 $(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>

编辑 :
从网页打印
打印预览图像

二维码不会从网页中打印出来。有什么建议么。

4

0 回答 0