function chkitem(){
for(var i=0;i<document.frmbegcomplete['txtprice[]'].length;i++){
var k = document.frmbegcomplete['txtquantity[]'][i];
var p = document.frmbegcomplete['txtorder[]'][i];
k.value = k.value.replace(/[^\d\.]/g,'');
p.value = p.value.replace(/[^\d\.]/g,'');
if (p.value > k.value){
alert("ยอดที่คุณรับเกินกว่าที่ขอซื้อไว้ กรุณาตรวจสอบ");
p.focus();
p.select();
}
}
}
function chkitem(){
for(var i=0;i<document.frmbegcomplete['txtprice[]'].length;i++){
var k = document.frmbegcomplete['txtquantity[]'][i];
var p = document.frmbegcomplete['txtorder[]'][i];
k.value = k.value.replace(/[^\d\.]/g,'');
p.value = p.value.replace(/[^\d\.]/g,'');
var pval = p.value*1; if (isNaN(pval)) pval = 0;
var kval = k.value*1; if (isNaN(kval)) pval = 0;
if (pval > kval){
alert("ยอดที่คุณรับเกินกว่าที่ขอซื้อไว้ กรุณาตรวจสอบ");
p.focus();
p.select();
}
}
}
function chkitem(){
for(var i=0;i<document.frmbegcomplete['txtprice[]'].length;i++){
var k = document.frmbegcomplete['txtquantity[]'][i];
var p = document.frmbegcomplete['txtorder[]'][i];
k.value = k.value.replace(/[^\d\.]/g,'');
p.value = p.value.replace(/[^\d\.]/g,'');
var pval = p.value*1; if (isNaN(pval)) pval = 0;
var kval = k.value*1; if (isNaN(kval)) kval = 0;
if (pval > kval){
alert("ยอดที่คุณรับเกินกว่าที่ขอซื้อไว้ กรุณาตรวจสอบ");
p.focus();
p.select();
}
}
}