반응형
jquery를 사용시 아래와 같이 하면 바코드 스캐너로 입력하는 값을 처리할 수 있습니다.
$(document).scannerDetection({
timeBeforeScanTest: 200, // wait for the next character for upto 200ms
startChar: [120], // Prefix character for the cabled scanner (OPL6845R)
endChar: [13], // be sure the scan is complete if key 13 (enter) is detected
avgTimeByChar: 40, // it's not a barcode if a character takes longer than 40ms
onComplete: function(barcode, qty){
alert(barcode); // 바코드 출력
}
});
반응형