对于这个问题,我制作了一个功能性的 JSfiddle:http: //jsfiddle.net/KSCLC/
我正在制作一个简单的页面,您可以在其中扫描或键入 UPC,它会自动添加到表格中以供显示。我废弃了一些代码来启动一个计时器,该计时器在输入完成后等待 3 秒,然后在我的表中创建一个新行以显示输入的 UPC 和项目信息。
这段代码虽然有一些问题。(我的问题)
A.) 当您手动输入 UPC 时,新行操作会发生多次(为同一个 upc 插入多行)但是当您使用条形码扫描仪扫描 UPC 时,它只会完成一次操作。(哪个是对的)
B.)当您从字段中删除信息(使 upc 字段为空白)时,新行操作再次发生,但插入一个空白行。
C.)我试图在插入行后将 upc 字段设为空白,但这并没有发生。我尝试upc='';
在插入行之后放置,但这不起作用。我定义upc
为:
var upc=document.getElementById("UPC").value;
(正如您在下面和 jsFiddle 中看到的那样。)
所以现在的代码......
我只是在 upc 字段中使用了一个简单的输入:
<input type="text" id="UPC" name="UPC" class="form-control scanning" autofocus="autofocus" placeholder="Scan or enter UPC here" />
和一个用于扫描项目的简单表格
<div class="scannedItems">
<table class="table table-hover" id="ScannedItems">
<thead>
<tr>
<th>UPC</th>
<th>Description</th>
<th>Price</th>
<th>Qty</th>
<th>Total</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td>8754621160</td>
<td>Example Product</td>
<td>$5.00</td>
<td>5lbs</td>
<td>$25.00</td>
<td>
<a><span class="glyphicon glyphicon-plus" style="padding-right:15px"></span></a>
<a><span class="glyphicon glyphicon-minus"></span></a>
</td>
</tr>
</tbody>
</table>
</div>
然后我的 Javascript
//setup before functions
var field = document.getElementById("UPC");
var typingTimer; //timer identifier
var doneTypingInterval = 3000; //time in ms, 3 seconds
//on keyup, start the countdown
$('#UPC').keyup(function () {
typingTimer = setTimeout(doneTyping, doneTypingInterval);
});
//on keydown, clear the countdown
$('#UPC').keydown(function () {
clearTimeout(typingTimer);
});
//user is "finished typing," do something
if (field.value.length == 0) {
//do nothing
} else {
function doneTyping() {
var upc = document.getElementById("UPC").value;
var table = document.getElementById("ScannedItems");
var row = table.insertRow(-1);
var cell1 = row.insertCell(0);
var cell2 = row.insertCell(1);
var cell3 = row.insertCell(2);
var cell4 = row.insertCell(3);
var cell5 = row.insertCell(4);
var cell6 = row.insertCell(5);
cell1.innerHTML = upc;
cell2.innerHTML = "Example Description";
cell3.innerHTML = "$3.00";
cell4.innerHTML = "7lbs";
cell5.innerHTML = "$21.00";
cell6.innerHTML = "<a><span class='glyphicon glyphicon-plus' style='padding-right:15px;'></span></a><span> </span><a><span class='glyphicon glyphicon-minus'></span></a>";
upc = '';
}
}