防止jQuery的数据表点击切换按钮时,恢复到初始状态(Prevent the jquery dat

2019-10-21 03:57发布

在这里,我的自举风格固定柱数据表 ,其中i可通过一个按钮作为切换的列,

 $('#ToggleColumns').click(function () { 
      table.destroy();
  if(columnNumber == 2)
  {
columnNumber = 0;  
  }
  else {
  columnNumber = 2; 
  }
  });

如果我在数据表分页的第3页,当我切换列,表恢复到初始位置。 即,第一页。 我怎样才能防止它,在那里在第3页本身切换后? 这同样适用于无。 记录选择了。

文章来源: Prevent the jquery datatable to restore to initial state when clicking the toggle button