Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
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:54https://barcode.tec-it.com/en/MobileQRCode?data=
위 링크에서 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
반응형
'💻Bootcamp Self-Study Revision✨ > JavaScript, jQuery, Ajax' 카테고리의 다른 글
JavaScript: Greatest Common Divisor (최대 공약수), Least Common Multiple (최소 공배수) (0) | 2023.06.29 |
---|---|
JavaScript: padStart, padEnd, map() (0) | 2023.06.28 |
모던 자바스크립트) Ajax (0) | 2023.06.14 |
HTML5 + CSS3 + JavaScript로 배우는 웹프로그래밍 기초) Ajax (0) | 2023.06.14 |
Comments