如何使用 if 条件隐藏 DataTables 按钮(pdf、复制、excel、打印)
Posted
技术标签:
【中文标题】如何使用 if 条件隐藏 DataTables 按钮(pdf、复制、excel、打印)【英文标题】:How to hide DataTables buttons(pdf, copy, excel, print) using if condition 【发布时间】:2021-06-11 03:00:42 【问题描述】:我面临着带有 if 条件的 Jquery Datatables 的显示和隐藏按钮的问题。 enter image description here
我想根据以下情况隐藏复制、PDF、Excel、打印按钮
$('#students').DataTable(
role_id: '<?php echo $this->session->userdata('role_id'); ?>',
dom: 'Bfrtip',
// scrollX: true,
if (role_id = 2)
// show buttons
buttons: [
// 'csv', 'excel', 'pdf', 'print'
extend: "excel", className: "buttonsToHide",
extend: "pdf", className: "buttonsToHide",
extend: "print", className: "buttonsToHide"
]
else
// hide buttons
);
【问题讨论】:
【参考方案1】:这个脚本会帮助你
<?php if($role_id == 1) ?>
// add the html of your buttons here
<?php ?>
【讨论】:
以上是关于如何使用 if 条件隐藏 DataTables 按钮(pdf、复制、excel、打印)的主要内容,如果未能解决你的问题,请参考以下文章
使用 CSS 隐藏行而不是使用 DataTables 删除节点