如何在 jquery jtable 中添加额外的列操作

How to add extra column actions in jquery jtable

我一直在研究 jquery jtables,但在某些情况下遇到了问题。我需要添加两个带有按钮的列选项卡,它们在点击事件期间有自己的操作。我可以使用 jquery jtable 插件 api 来做到这一点吗?

是的,您可以在 JTable 中添加额外的列。 Here 是为此给出的示例。

TestColumn: {
    title: 'Test',
    display: function (data) {
        return '<a href="...">'; //here you can call JavaScript function using  onclick
    }
}