入住退房时间 2013 年 6 月 7 日下午 3:24:40 2013 年 6 月 7 日下午 3:26:21 00:01:41:000 查看按钮 2013 年 6 月 7 日下午 3:32:25 2013 年 6 月 7 日下午 3:34 :26 PM 00:02:01:000 查看按钮
单击“查看详细信息”按钮时,我正在使用 Jquery 获取表值,但我无法在 web.xml 中检索它。如何在按钮单击时有效地获取表格详细信息
我的代码是
for (var post in result)
{
$("#tablegrid > tbody").append("<tr id=subtablegrid><td>"+result[post].CheckedIn+"</td><td>"+result[post].CheckedOut+"</td><td>"+result[post].Duration+"</td><td class='mapview'><a id="+viewbtnid+','+fieldstaffid+" href='#' data-role='button' >View Details</a></td></tr>");
viewbtnid++;
}
$(document).on('click','.mapview a',function(){
var id=$(this).attr('id');
var idArr=new Array();
idArr=id.split(",");
alert(idArr[0]+" "+idArr[1]);
var fieldstaffid=idArr[1];
var fromDate=$("#tablegrid tbody tr:nth-child("+idArr[0]+") td:nth-child(1)").text();
var toDate=$("#tablegrid tbody tr:nth-child("+idArr[0]+") td:nth-child(2)").text();
fromDateTime=fromDate.substring(0,13);
toDateTime=toDate.substring(0,13);
alert(" to date "+toDateTime);
alert(fromDateTime+" "+toDateTime);
});