JSP条件检查HTML元素类

时间:2015-02-20 16:23:08

标签: html class jsp jstl conditional

我在JSP中编写了一个条件选择,它将更改链接的URL,但我希望它能够检查正文的指定类。

<c:choose>
     <c:when test="${body.class == 'this'}">
         //Do This
     </c:when>
     <c:otherwise>
          //Do That
     </c:otherwise>
</c:choose>

<html>
<body class="that">
</body>
</html>

这甚至可能吗? test =“$ {body.class ='this'}”的语法是否合适?

1 个答案:

答案 0 :(得分:-1)

JSTL是服务器端代码&amp;你的身体是html,客户端。使用jQuery / Javascript来实现这个目标:

$(document).ready(function(){
   var css=$("body").attr("class"); 
   if(css == "this"){
      // do this 
   }else{
      // do that
   }
});