Jquery获取对象

//为获取UserInfo对象按钮添加鼠标单击事件
		$("#getUserInfo").click(
				function() {
					$.getJSON("../user!returnUserInfo.action",
							function(data) {
								//清空显示层中的数据
							$("#message").html("");
							//为显示层添加获取到的数据
							//获取对象的数据用data.userInfo.属性
							$("#message").append(
									"<div><font color='red'>用户ID:"
											+ data.user.id + "</font></div>")
									.append(
											"<div><font color='red'>用户名:"
													+ data.user.username
													+ "</font></div>").append(
											"<div><font color='red'>密码:"
													+ data.user.password
													+ "</font></div>")
						});
				});

你可能感兴趣的:(java,html,jquery)