Bootstrap表 - 全屏不起作用

时间:2018-06-12 14:37:34

标签: bootstrap-table

我可以看到带有

的全屏按钮

$(".table").bootstrapTable({ showFullscreen: true, });

但点击它没有任何反应......

谢谢。

1 个答案:

答案 0 :(得分:0)

将您的代码添加到文档准备

<script>
$(document).ready(function(){
  $(".table").bootstrapTable({
        showFullscreen: true,
  });
});
</script>