0

我在一个项目http://www.tablefixedheader.com/上使用这个插件,但我需要在创建表时放置一些动态数据。

建表的Js代码为:

<script type="text/javascript">
    $.ajax({
            url: 'dialogs/WMS/mytable.php',
            success: function(data) {
                $('.maintab<?php echo $varc ?>
                ').html(data).fixheadertable({
                   colratio : [45, 24, 24, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150 ],
                   zebra : true,
                   sortable : true,
                   sortedColId : 3,
                   resizeCol : true,
                   height  : 150,
                   pager : true,
                   sortType : ['integer', 'string', 'string', 'string', 'string', 'date']
                });
                            }
    });
</script>

我需要包含一些参数。我尝试了什么:

示例 1(不成功)

<script type="text/javascript">
     $.ajax({
      url:'dialogs/mytable.php?columns='<?php echo $column ?>,
      type: 'post',
      success: function(data) {
      $('.maintab<?php echo $varc ?>
       ').html(data).fixheadertable({
       colratio : [45, 24, 24, 180, 180, 180, 180, 180,180, 180, 180, 180, 180, 180]
       zebra : true,
       sortable : true,
       sortedColId : 3,
       resizeCol : true,
       height  : 150,
       pager : true,
       sortType : ['integer', 'string', 'string', 'string', 'string', 'date']
       });
       }
       });
     </script>

示例 2(不成功)

<script type="text/javascript">
     $.ajax({
      url:'dialogs//mytable.php?columns='<?php $column ?>,
      type: 'post',
      success: function(data) {
      $('.maintab<?php echo $varc ?>
       ').html(data).fixheadertable({
       colratio : [45, 24, 24, 180, 180, 180, 180, 180,180, 180, 180, 180, 180, 180],
       zebra : true,
       sortable : true,
       sortedColId : 3,
       resizeCol : true,
       height  : 150,
       pager : true,
       sortType : ['integer', 'string', 'string', 'string', 'string', 'date']
       });
       }
       });
     </script>

示例 3(不成功)

<script type="text/javascript">
 $.ajax({
  url:'dialogs/mytable.php',
   data: {
   columns: <?php echo $column ?>,
  }
  type: 'post',
  success: function(data) {
  $('.maintab<?php echo $varc ?>
   ').html(data).fixheadertable({
   colratio : [45, 24, 24, 180, 180, 180, 180, 180,180, 180, 180, 180, 180, 180],
   zebra : true,
   sortable : true,
   sortedColId : 3,
   resizeCol : true,
   height  : 150,
   pager : true,
   sortType : ['integer', 'string', 'string', 'string', 'string', 'date']
   });
   }
   });
 </script>

示例 4(不成功)

<script type="text/javascript">
 $.ajax({
  url:'dialogs/mytable.php',
   data: {
   columns: <?php $column ?>,
  }
  type: 'post',
  success: function(data) {
  $('.maintab<?php echo $varc ?>
   ').html(data).fixheadertable({
   colratio : [45, 24, 24, 180, 180, 180, 180, 180,180, 180, 180, 180, 180, 180],
   zebra : true,
   sortable : true,
   sortedColId : 3,
   resizeCol : true,
   height  : 150,
   pager : true,
   sortType : ['integer', 'string', 'string', 'string', 'string', 'date']
   });
   }
   });
 </script>

没有来自开发人员的答案,也没有在论坛上找到类似的东西。任何人都知道如何进行?

4

1 回答 1

0

我已经得到了答案。使用此插件并需要数据库推送数据的人,使用 AJAX 数据,您应该继续执行以下操作:

<script type="text/javascript">
 $.ajax({
  url:'dialogs/mytable.php',
   data:{view: view,
        columns : '<?php echo $columns; ?>',
        },
  type: 'post',
  success: function(data) {
  $('.maintab<?php echo $varc ?>
   ').html(data).fixheadertable({
   colratio : [45, 24, 24, 180, 180, 180, 180, 180,180, 180, 180, 180, 180, 180],
   zebra : true,
   sortable : true,
   sortedColId : 3,
   resizeCol : true,
   height  : 150,
   pager : true,
   sortType : ['integer', 'string', 'string', 'string', 'string', 'date']
   });
   }
   });
 </script>

顺便说一句,感谢所有试图帮助这个问题的人:)

于 2014-04-29T14:20:38.033 回答