gpt4 book ai didi

PHP 在 if 条件下添加数据可见

转载 作者:行者123 更新时间:2023-12-01 08:45:15 25 4
gpt4 key购买 nike

我在项目中使用 Boot Grid 表,我只想根据帐户类型显示特定列。

我想要采取的方法是在 if 语句上使用 PHP:

如果 account_type =“Rep”,则 ID#name data-visible="false"

<th data-column-id="name" data-visible="true">Name</th>

if($_SESSION['account_type'] === 'Rep') {
echo '$("#name").attr("data-visible", "false");';
}

这可以用 PHP 实现还是我必须使用 jQuery?
如果我使用 jQuery,这不会那么安全,对吗?

我是初学者,所以我试图找到最简单的解决方案。

最佳答案

最有效的方法是将值保留在隐藏元素中。并在 JavaScript 中使用它。

<th data-column-id="name" data-visible="true">Name<input type='hidden' name='account_type' id='account_type' value='<?=$_SESSION['account_type']?>'></th>

然后

<script>
$(function(){
var account_type=$('#account_type').val();
if(account_type === 'Rep') {
$("#name").attr("data-visible", "false");
}
});
</script>

关于PHP 在 if 条件下添加数据可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43383758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com