我在一个项目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>
没有来自开发人员的答案,也没有在论坛上找到类似的东西。任何人都知道如何进行?