我在我的jasp中有一个html表,它呈现了一对id&一个月,它看起来像这样:
jsp看起来像这样:
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@page import="java.util.Map"%>
<%@page import="java.util.List"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<form method="Post" action="payCheckInfo">
<table id="ptable" border="1">
<tr>
<td style="text-align: center;">ID</td>
<td style="text-align: center;">Month</td>
</tr>
<c:forEach var="entry" items="${EmployeeHashMap}" >
<!-- entry.key is employee.key -->
<!-- entry.value is employee.skills -->
<c:forEach var="month" items="${entry.value}" >
<tr>
<td><a href="payCheckInfo">${entry.key}</a></td>
<td>${month}</td>
</tr>
</c:forEach>
</c:forEach>
</table>
</form>
</body>
</html>Type a message
现在我希望每次用户点击一些id(这是一个链接)我会去payCheckInfo这是我的servlet,从那里我可以得到特定的行数据,因为在payCheckInfo我有一个正在做我需要做的数据
的方法答案 0 :(得分:0)
获取一行的特定行数据。
onDrawerClosed(View drawerView)
onDrawerOpened(View drawerView)
onDrawerSlide(View drawerView, float slideOffset)
onDrawerStateChanged(int newState)
&#13;
$("tr.table").click(function() {
var tableData = $(this).children("td").map(function() {
return $(this).text();
}).get();
alert($.trim(tableData[0]) + " , " + $.trim(tableData[1]));
//Here, Make a Ajax call to your Servlet payCheckInfo
});
&#13;