jquery
[jquery] QR코드 생성하기
http://portfolio.wonpaper.net
2022. 11. 3. 03:37
QR코드를 무료로 생성해 보기로 한다.
jquery 오픈소스를 이용하여 테이블형과 그냥 이미지형으로 구분되어 있는 소스를 활용한다.
https://github.com/jeromeetienne/jquery-qrcode
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="/src/jquery.qrcode.js"></script>
<script type="text/javascript" src="/src/qrcode.js"></script>
<p>테이블형</p>
<div id="qrcodeTable"></div>
<p>캔버스 이미지형</p>
<div id="qrcodeCanvas"></div>
<script>
//jQuery('#qrcode').qrcode("this plugin is great");
jQuery('#qrcodeTable').qrcode({
render : "table",
text : "http://주소"
});
jQuery('#qrcodeCanvas').qrcode({
text : "http://주소"
});
</script>
|
cs |