我使用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>
编辑:
qrcode不会从网页上打印出来。任何建议。