当我的应用内容发生变化时,如何让我的脚本运行?

时间:2017-06-15 02:06:46

标签: javascript html5 ionic-framework footable

您好我想在我的移动应用程序(我使用离子框架)中实现某种数据表,我正在查看足迹。当我在我的应用程序的索引中使用footable工作,但当它更改为其他页面时,该页面的表不起作用。 footable的脚本只能运行一次,并且是在加载索引页面时。这是脚本

<script>
 jQuery(function($){
    $('.table').footable();
 });
</script>

在footables页面(http://fooplugins.github.io/FooTable/docs/getting-started.html#download)中讨论.on方法的使用,但这不起作用

<script>
jQuery(function($){
    $('.table').on({
        "init.ft.table": function(e, ft){
            // bind to the plugin initialize event to do something
        }
    }).footable();
});
</script>

离子中的应用程序只有一个索引,并且在应用程序内容加载的ion-app标记内

enter image description here

0 个答案:

没有答案