jq 遍历 元素
Posted xdcr
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq 遍历 元素相关的知识,希望对你有一定的参考价值。
$("#spec").find("div.gods-spe").each(function(i,n){ var child = $(this).children(); //var name = child.eq(0).text(); var dics = child.eq(1).find("input").eq(0).val(); var money = child.eq(1).find("input").eq(1).val(); var stock = child.eq(1).find("input").eq(2).val(); var file = child.eq(1).find("input").eq(3).attr("id"); if(Validate.isEmpty(dics)){ $("#mobody").html("商品规格描述不能为空!"); $("#myModal").modal(‘show‘); return; } if(Validate.isEmpty(money)){ $("#mobody").html("商品售价不能为空!"); $("#myModal").modal(‘show‘); return; } if(Validate.isEmpty(stock)){ $("#mobody").html("商品库存不能为空!"); $("#myModal").modal(‘show‘); return; } if($("#"+file).val()==""){ $("#mobody").html("请上传规格图片!"); $("#myModal").modal(‘show‘); return; } myArray.push({"dics":dics,"money":money,"stock":stock}); filearray.push(file); })
以上是关于jq 遍历 元素的主要内容,如果未能解决你的问题,请参考以下文章