首页 > 编程 > JavaScript > 正文

jQuery遍历Table应用示例

2019-11-20 20:51:02
字体:
来源:转载
供稿:网友
复制代码 代码如下:

function checkwo(){
var vales = "";
$("#vales").val(vales);
var flag = false;
var bo = true;
$("#data_table").find("tr").each(function(){
$(this).find("td input").each(function(){
if($(this).attr("name")=="rid")
{
vales+=$(this).val()+"&";
}
if($(this).attr("name")=="qty")
{
var qty = $(this).val();
if(qty<0)
{
alert("实盘数量不能为负数");
bo = false;
return;
}
if(qty>0)
{
flag = true;
}
vales+=qty+",";
}
});

});
if(bo==false)
{
return;
}
$("#vales").val(vales);
if(flag==false)
{
alert("请输入实盘数量");
return;
}
document.all.sys_submit.click();
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表