< script type = "text/javascript" >
$(function() {
var oAllLinksTable = $("#mydatatable").dataTable({
"bProcessing": false,
"bServerSide": true,
"sAjaxSource": "/myreports/data?Id=" + id,
"sPaginationType": "full_numbers",
"bDestroy": true
});
});
< /script>
我的表如下如何使用jquery在jquery數據表中插入序列號?
<table id="headertagstable" style="width: 100%;" class="grid-table04 margin-b-20">
<thead>
<tr>
<th width="10%" align="left" valign="middle">
SI No
</th>
<th width="40%" align="left" class="black-link-first" valign="middle">
Name
</th>
<th width="25%" align="left" valign="middle">
Date
</th>
<th width="25%" align="left" valign="middle">
Place
</th>
</tr>
</thead>
</table>
所有作品,除了序號罰款。我如何使用jQuery添加序列號?
而不是將更多的代碼提供描述以及代碼來理解問題 – 2012-02-06 05:43:58
在我如何插入序列號使用jquery我嘗試實現「aoColumnDefs」:[{「bSortable」:true,「bSearchable」:true, 「fnRender」:function(oObj){//這裏如何生成序列號?並使用返回的序列號}「aTargets」:[0] } – 2012-02-06 05:47:27