//輸入框框
<input id="inputFactoryLabelInVirtualFullLabelCode" type="text" />
//透過ID取的 前端頁面的value
var FullLabelCode = document.getElementById("inputFactoryLabelInVirtualFullLabelCode").value;
///透過#查詢ID是ShippingFormTable的Table使用is來處理判斷
var ch = $("#ShippingFormTable tr").is("#"+FullLabelCode+"");
//判斷是否有
if (ch) {
//提示音效
var sound = document.getElementById('Audio');
sound.play();
document.getElementById("inputFactoryLabelInVirtualFullLabelCode").focus();
document.getElementById("inputFactoryLabelInVirtualFullLabelCode").select();
alert("重複盤讀,請確定輸入是否正確?");
return;
}