코딩_jquery
QR CODE, QR 코드 html 에서 보기
잠수콩
2015. 5. 22. 18:01
제목 : QR CODE, QR 코드 html 에서 보기
소스 :
<!-- QR CODE -->
<table style="border:1px solid #ededed;" width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding:10px 10px 10px 10px;"><div id="qrcodeCanvas"></div></td>
</tr>
</table>
<script type="text/javascript" src="/jscript/jquery.qrcode.js"></script>
<script type="text/javascript" src="/jscript/qrcode.js"></script>
<script>
<!--
$('#qrcodeCanvas').qrcode({
render : "table",
text : http://localhost,
width : 178,
height : 178
});
//-->
</script>
<!-- // QR CODE -->
내용 :
예제 소스 파일 :