jQuery扫描的delectation会自动触发输入键事件。
我不想调用回车键方法,而是想调用另一种方法。
jQuery("#txtBatchNumber").scannerDetection({
timeBeforeScanTest: 200,
endChar: [13],
avgTimeByChar: 60,
onComplete: function (barcodeValue) {
jQuery("#txtBatchNumber").val();
GetPalletInfoForLabelFromOtherSite(barcodeValue);
}
});