• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
#define wzz
博客园    首页    新随笔    联系   管理    订阅  订阅
ajax json 动态传值
<a href="#" onclick="getRightInfo(${v.ctid})"></a>

<div id="rightinfo"></div>

<script type="text/javascript">
	$(document).ready(function() {
		
	});
	
	function getRightInfo(ctid) {
		$.ajax({
			url : "${contextPath}/web/infoshoplist.htm",
			data : "ctid="+ctid,
			cache : false,
			success : getRightInfoCallback
		});
	}

	function getRightInfoCallback(xmlHttp) {
		var mainfloor = xmlHttp.infocontactlist;
		
		if (mainfloor != null) {
			$("#rightinfo").hide();
			var str = '';
			
			for (var i = 0; i < mainfloor.length; i++) {
				str += '<a href="${contextPath}/web/infocontact.htm?contactid=' + mainfloor[i].contactid + '&userid=' + mainfloor[i].userid + '">';
				str += '<div class="media">';
				str += '<div class="yyright">';
				str += '<div class="media-left">';
				str += '<img id="bxg" class=" media-object" src="' + mainfloor[i].icon + '">';
				str += '</div>';
				str += '<div class="media-body">';
				str += '</a>';
				str += '<a href="${contextPath}/web/editinfocontact.htm?contactid=' + mainfloor[i].contactid + '&userid=' + mainfloor[i].userid
						+ '">';
				str += '联系人:' + mainfloor[i].sname;
				str += '<br>';
				str += '</div>';
				str += '</div>';
				str += '</div>';
				str += '</a>';
			}
			//alert(str);
			
			$("#rightinfo").html(str);
			$("#rightinfo").show();
			
		} else {
			$("#rightinfo").hide();
		}
	}
</script>


@RequestMapping("/infoshoplist.htm")
	@ResponseBody
	public Map<String, Object> infoshoplist(Model model, RequestParameter param) {

		Map<String, Object> map = new HashMap<String, Object>();
		map.put("infoshoplist", webService.getInfoShopList(param.getCtid()));
		return map;
	}

  

posted on 2016-01-07 13:11  #define wzz  阅读(1999)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3