1. 程式人生 > >bootstrap table 顯示行號

bootstrap table 顯示行號

<th  data-field="index" data-formatter="indexFormatter" >序號</th>
<script type="text/javascript">
		 function indexFormatter(value, row, index) {
		      return index+1;
		 }
	  </script>