在bootstrap表中添加行时无限循环

时间:2015-07-23 11:59:10

标签: jquery twitter-bootstrap events bootstrap-table

我有一个有5行的表,我想动态添加另一行,我不想通过onclick事件添加该行。我希望自动添加该行,以便我选择' post-header.bs.table'事件。但是现在我遇到了无限循环,浏览器崩溃了。我不知道它为什么会遇到无限循环,请让我知道如何解决这个问题。

代码:

 $(function () {
                    $('#Table2').on('post-header.bs.table', function () { 
                        $('#Table2').bootstrapTable('insertRow', {
                            index:5,
                            row: {
                                Data:{
                                practice: 'score',
                                input: '12345'
                                }
                            }                  
                        });
                    });
                });

我需要传递行中的数据:{数据:{练习:'得分',输入:' 12345'}}格式。

0 个答案:

没有答案