Jquery 可脚踏v3韩元';t在行中显示按钮元素

Jquery 可脚踏v3韩元';t在行中显示按钮元素,jquery,html,twitter-bootstrap-3,responsive-design,footable,Jquery,Html,Twitter Bootstrap 3,Responsive Design,Footable,我的Footable版本3(用于引导)出现了一个问题,而版本2没有出现这个问题。按钮元素短暂显示,然后完全消失(在HTML中,只剩下按钮的文本-标记被删除!)。 有没有办法绕过这个问题(潜在的bug)?文件中没有提到这一点 <table class="table table-striped toggle-arrow-alt"> <thead> <tr>

我的Footable版本3(用于引导)出现了一个问题,而版本2没有出现这个问题。按钮元素短暂显示,然后完全消失(在HTML中,只剩下按钮的文本-标记被删除!)。 有没有办法绕过这个问题(潜在的bug)?文件中没有提到这一点

<table class="table table-striped toggle-arrow-alt">
                    <thead>
                        <tr>
                            <th>This</th>
                            <th>Is</th>
                            <th>A</th>
                            <th>TEST</th>
                            <th data-breakpoints="xs sm">Of</th>
                            <th data-breakpoints="xs sm">the emergency webcast system</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td>Hi There!</td>
                            <td>
                                <button>?</button></td>
                            <td>foo bugs are not cool</td>
                            <td>$123,847.88</td>
                            <td>Hi There!</td>
                            <td>
                                <button>?</button></td>
                        </tr>
                        <tr>
                            <td>Hi There!</td>
                            <td>
                                <button>?</button></td>
                            <td>foo bugs are not cool</td>
                            <td>$99,847.88</td>
                            <td>Hi There!</td>
                            <td>
                                <button>?</button></td>
                        </tr>
                        <tr>
                            <td>Hi There!</td>
                            <td>
                                <button>?</button></td>
                            <td>foo bugs are not cool</td>
                            <td>$153,847.88</td>
                            <td>Hi There!</td>
                            <td>
                                <button>?</button></td>
                        </tr>

                    </tbody>
                </table>

这
是
A.
试验
属于
应急网络广播系统
你好!
?
foo bugs并不酷
$123,847.88
你好!
?
你好!
?
foo bugs并不酷
$99,847.88
你好!
?
你好!
?
foo bugs并不酷
$153,847.88
你好!
?
和标题(可能脚本顺序错误-尽管它会调整大小)


$(文档).ready(函数(){
$(“.table”).可脚踏({
“分页”:{“已启用”:true},
“排序”:{“已启用”:true}
});
});
当我从Chrome查看HTML源代码时(请注意,button元素完全丢失):

你好! ?foo bugs不酷$123847.88你好! ?
不管怎么说,我想把它修好,真让我抓狂。在版本3中,有一个类型说明符,默认为“text”,需要为每个需要html的列将其设置为“html”

$('.table').footable({
    "columns": [{
        "type": "text"
    },{
        "type": "html"
    },{
        ...
    }]
});

有效的类型有“text”、“html”、“number”和“date”

关于版本3,我唯一注意到的是它会闪烁。显然,在客户端分页或排序时,即使不需要,它也会重新绘制表。对用户来说很烦人。
<tr><td class="footable-first-visible" style="display: table-cell;">Hi There!</td><td style="display: table-cell;">
                                ?</td><td style="display: table-cell;">foo bugs are not cool</td><td style="display: table-cell;">$123,847.88</td><td style="display: table-cell;">Hi There!</td><td class="footable-last-visible" style="display: table-cell;">
                                ?</td></tr>
$('.table').footable({
    "columns": [{
        "type": "text"
    },{
        "type": "html"
    },{
        ...
    }]
});