0

我正在尝试根据数据库值显示/隐藏列。我正在使用 Jquery、PHP 和 MySQL。

我正在使用 ajax 检索数据并隐藏列,但它没有隐藏 tbody 数据,只有标题被隐藏:

$(function () 
  {
    //-----------------------------------------------------------------------
    // 2) Send a http request with AJAX http://api.jquery.com/jQuery.ajax/
    //-----------------------------------------------------------------------
    $.ajax({                                      
      url: 'account-number.php',                  //the script to call to get data          
      data: '',                        //you can insert url argumnets here to pass to api.php
                                       //for example "id=5&parent=6"
      dataType: 'json',                //data format      
      success: function(data)          //on recieve of reply
      {
        var user = data[1];              //get id
        var table = data[2];            //get table name 
        var show = data[4];          //display or hide
        //--------------------------------------------------------------------
        // 3) Update html content
        //--------------------------------------------------------------------
        //recommend reading up on jquery selectors they are awesome 
        // http://api.jquery.com/category/selectors/
        if (show == 0)
        $('#'+ table +'tbody td:nth-child(1), #' + table + 'thead th:nth-child(1)').hide();
        //$('#'+ table +'td:nth-child('+ column +'),th:nth-child('+ column +')').hide();
        if (show == 1)
        $('#'+ table +'tbody td:nth-child(1), #' + table + 'thead th:nth-child(1)').show();
      } 
    });
  }); 

控制台中没有错误。有没有一种特定的方法可以根据数据库值在 Jquery 中隐藏/显示带有数据表的表数据?

任何帮助或建议,将不胜感激!

4

1 回答 1

1

我以前没看过这个帖子!jquery数据表隐藏列

但这对我帮助很大。

我改变了这个:

 if (show == 0)
            $('#'+ table +'tbody td:nth-child(1), #' + table + 'thead th:nth-child(1)').hide();

 if (show == 1)
            $('#'+ table +'tbody td:nth-child(1), #' + table + 'thead th:nth-child(1)').show();

对此:

if (show == 0)
        oTable.fnSetColumnVis( 0, false );

if (show == 1)
        oTable.fnSetColumnVis( 0, true );
于 2013-07-01T11:34:19.600 回答