我正在尝试实现一个过滤器,该过滤器默认删除带有“ inactive_account”属性的帐户,但可以通过单击“显示非活动帐户”按钮将其添加回w /。
我一直在尝试引用文档中的this页,但是在尝试找出将函数实际放置在代码中的位置时遇到了问题。我在项目其他地方的另一个(非Datatables)表中实现了类似的东西:
function showInactiveUsers() {
const users = $('.user-false')
users.each(function(element) {
$(this).toggle()
})
let text = $('.all-users').text()
$('.all-users').text(
text == "Show Inactive Users" ? "Hide Inactive Users" : "Show Inactive Users"
)
}
但是尝试用Datatables实现相同的功能使我的工作变得很糟。任何人都试图实现类似的东西吗?