我使用jQuery datatable.I做它使用
http://www.datatables.net/examples/api/select_row.html
现在我想获取选定的行值ids
现在我想获取选定的行值ids
脚本:
$(document).ready(function() { var table = $('#example').DataTable(); $('#example tbody').on( 'click','tr',function () { $(this).toggleClass('selected'); } ); $('#button').click( function () { alert( table.rows('.selected').data().length +' row(s) selected' ); } ); } );
和HTML代码:
<table id="example" class="display" cellspacing="0" width="100%"> <thead> <tr> <th>Id</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th>Salary</th> </tr> </thead> <tfoot> <tr> <th>Id</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th>Salary</th> </tr> </tfoot> <tbody> <tr> <td>1</td> <td>System Architect</td> <td>Edinburgh</td> <td>61</td> <td>2011/04/25</td> <td>$320,800</td> </tr> <tr> <td>2</td> <td>Accountant</td> <td>Tokyo</td> <td>63</td> <td>2011/07/25</td> <td>$170,750</td> </tr> </table>
现在我可以选择no.of.rows.Now我想要获得选定的行ids.Can任何人指导我实现它.
解决方法
您可以遍历行数据
$('#button').click(function () { var ids = $.map(table.rows('.selected').data(),function (item) { return item[0] }); console.log(ids) alert(table.rows('.selected').data().length + ' row(s) selected'); });
演示:Fiddle