本文介绍了jQuery-数据表,如何获取列ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在jquery的数据表插件中获取列ID,我需要用于数据库更新的列ID.

How to get a column id in datatable plugin for jquery I need column id for the update in database.

推荐答案

fnGetPosition

输入参数:

返回参数:

代码示例:

$(document).ready(function() {
    $('#example tbody td').click( function () {
        /* Get the position of the current data from the node */
        var aPos = oTable.fnGetPosition( this );

        /* Get the data array for this row */
        var aData = oTable.fnGetData( aPos[0] );

        /* Update the data array and return the value */
        aData[ aPos[1] ] = 'clicked';
        this.innerHTML = 'clicked';
    } );

    /* Init DataTables */
    oTable = $('#example').dataTable();
} );

来自 datatables.net

这篇关于jQuery-数据表,如何获取列ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 15:44