在我的asp.net MVC 3应用程序中Jqgrid用作我的网格。它包含一个复选框,我管理事件如下
$("#list").find('input[type=checkbox]').live('change', function () {
if ($(this).is(':checked')) {
var _row = $(this).parent().parent();
}
});
我得到了使用$(this).parent().parent()我想要的行get the id of the _row。我怎样才能得到身份证?有什么方法请分享