如果您的意思是您想再次使用相同的標籤來創建具有新數據的QR碼。
您可以通過在元素上使用$('#qrcode').empty()
像
$('#qrcode').qrcode({width: 340,height: 300,text: "this is a test value."});
$('#qrcode').empty();
$('#qrcode').qrcode({width: 340,height: 300,text: "this is another test value."});
結帳這個示例中,我提出 https://jsbin.com/kotukuqoqi/edit?html,console,output
如果你需要生成QR碼,我建議使用谷歌圖表API喜歡做這
function createQrCode(text)
{
$("#new-qrcode").html('<img src="https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl={0}"/>'.format(encodeURIComponent(text)));
}
來源
2017-09-04 20:41:26
4xy