Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
In Total
관리 메뉴

A Joyful AI Research Journey🌳😊

JavaScript: 바코드 Generator에서 QR코드로 물품 이름 읽기 본문

💻Bootcamp Self-Study Revision✨/JavaScript, jQuery, Ajax

JavaScript: 바코드 Generator에서 QR코드로 물품 이름 읽기

yjyuwisely 2023. 6. 27. 09:54

https://barcode.tec-it.com/en/MobileQRCode?data=

 

Free Online Barcode Generator: Create Barcodes for Free!

This free online barcode generator creates all 1D and 2D barcodes. With TEC-IT Barcode Software you generate barcodes as part of applications or web-sites. Available as Barcode ActiveX, Barcode .NET Web Forms Control, Barcode DLL.

barcode.tec-it.com

위 링크에서 QR코드를 생성한다.


입고 등록 itemReceived.jsp

<c:if test="${not empty getQRDatas.name}">
    <script>
        let nameVal = document.getElementById('name').value = "${getQRDatas.name}";
        let specificationsVal = document.getElementById('specifications').value = "${getQRDatas.specifications}";
        let nameInput = document.getElementById('name');
        let specificationsInput = document.getElementById('specifications');

        if(nameVal !== null && nameVal.trim() !== ''){
            nameInput.readOnly = true;
            specificationsInput.readOnly = true;
        }
    </script>				
</c:if>

물품명을 읽게 된다.


728x90
반응형
Comments