码迷,mamicode.com
首页 > 其他好文 > 详细

jq 遍历 元素

时间:2018-10-08 15:57:08      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:modal   val   csharp   dal   元素   spec   return   class   text   

$("#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 遍历 元素

标签:modal   val   csharp   dal   元素   spec   return   class   text   

原文地址:https://www.cnblogs.com/xdcr/p/9754502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!