我有一个手风琴标签系统,我有两个统计数据应用active
和checked
。
我还有一个php会话,根据该会话我隐藏或显示一些标签。
这是我的手风琴标签,其中包含有效状态和已检查状态
我的手风琴
<label for='product-47-47' class="first active">
<input type='checkbox' style="float: left" class='regular-checkbox big-checkbox multicheck'
data-paysys="" checked/>
<div class="accord-text">
<strong>hello world:</strong></br><em>£00.00 for 1 year's access</em>
</div>
</label>
我的php会话切换语句根据会话隐藏标签
php会话切换
<?php
switch ($_SESSION['my_session_data']) {
case "first":
?>
<style type="text/css">
.first,.second{
display: none !important;
}
</style>
<?php
break;
case "second":
?>
<style type="text/css">
.second,.third {
display: none !important;
}
</style>
<?php
break;
case "third":
?>
<style type="text/css">
.first,.third {
display: none !important;
}
</style>
<?php
break;
default:
}
我还需要根据情况更改检查和活动状态