Ajax异步请求,对map中的list集合进行遍历

resp为一个Map对象,包含有一个List集合,通过jQuery.each(resp.cmpList, function(i,item){ }对List集合进行遍历,resp.cmpList为一个list集合,item为list集合里的一个元素

$.ajax(
	{
		url:'/data/query_media',
		cache: false,
		type:'post',
		data:paramStr,
		dataType:'json',
		async:false,
		success:function(resp)
		{
			$("#con_one_2").children().hide();
			$("#con_one_2").append("<div id='media_"+resp.pageIndex+"'></div>")
			//$("#con_one_2").empty();
			//遍历公司集合,拼接显示公司列表
			 jQuery.each(resp.proList, function(i,item){  
			 	 $("#media_"+resp.pageIndex).append("<div class=\"ttkx\">"+
            	 "<div class=\"tp\"><div><a href=\"/get_media_info.html?id="+item.id+"\"><img src=\""+item.cover+"\" width='114' height='90' /></a></div></div> "+
             	 " <div class=\"tp_z\">"+
            	 "  <p><b>简介:</b>"+ checkNull(item.productExplain)+"</p>"+
             	 " <p><b>价格:</b>"+ price(checkNull(item.productPrice))+"</p>"+
            	 "  <p><b>类型:</b>"+ checkNull(item.productType)+"</p>"+
            	 "  <p><b>公司:</b><a href='/get_company_info.html?cmpId="+item.cmpId+"'>"+ item.cmpName+"</a></p>"+
           		 " </div>"+
          		 "</div>");
              
            }); 
            //设置分页
            var page1 = "";
            var page2 = "";
            var next = parseInt(resp.pageIndex)+1;
            var pre = parseInt(resp.pageIndex)-1
            if(resp.pageIndex>1)
            {
            	page1 = "<td><a onclick='nextPageMedia("+pre+");'><img src=\"/images/Previous_page.jpg\" width=\"59\" height=\"25\" style='cursor:pointer'/></a></td>";
            }else{
            	page1 = "<td><img src=\"/images/Previous_page.jpg\" width=\"59\" height=\"25\" /></td>"
            }
             if(parseInt(resp.pageIndex) < parseInt(resp.maxPage))
            {
            	page2 = "<td><a onclick='nextPageMedia("+next+");'><img src=\"/images/next_page.jpg\" width=\"59\" height=\"25\" style='cursor:pointer'/></a></td>";
            }else{
            	page2 = "<td><img src=\"/images/next_page.jpg\" width=\"59\" height=\"25\" /></td>"
            }
            
            $("#media_"+resp.pageIndex).append("<table cellpadding=\"0\" cellspacing=\"0\" id=\"page\">"+
            "<tr>"+
            "<td >&nbsp;</td>"+
            page1+
             "<td >&nbsp;"+resp.pageIndex+"/"+resp.maxPage+"</td>"+
           page2+
            "</tr>"+
            "</table>");	
		}
	});

 

转载于:https://my.oschina.net/u/615618/blog/142576

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值