我有一个.jsp页面,显示一个包含4列的付款表。根据登录用户的类型,我想灰显不可用的选项。如果有人是一个完整的订阅者,那么他们只有你可以获得的付费,并将剩下的作为例子。如果是基本的,将有1,3,4列可用,2灰色。我知道我可以通过检查$ {subs.costs}“
的长度来确定应该显示哪些选项我可以只使用jquery,css以及基于上述参数的代码是什么?
我的HTML是:
<!-- TBODY -->
<tbody>
<tr>
<td></td>
<th> pay as you go</th>
<th> Basic subscription</th>
<th> Advanced subscription</th>
<th> Full Subscription</th>
</tr>
<tr>
<td></td>
<td>price</td>
<td>price</td>
<td>price</td>
<td>price</td>
</tr>
</tbody>
</table>
答案 0 :(得分:0)
由于您需要了解视图中可能不可用的订阅者属性,因此您可能更好地在服务器上设置css而不是使用jquery ...