Front-end js gets the contents of the specified row or selected row of the table

## Get the specified row

var row = $('#stuA').datagrid('getRows')[0];

Note: stuA is table id

## Get the selected row

var row = $('#stuA').datagrid('getSelected');

Guess you like

Origin blog.csdn.net/sinat_29891353/article/details/124878122
Row