我的网页中有这么一段代码:
<c:choose> <c:when test="${article.author != null}"> value="${article.author}" </c:when> <c:otherwise> value="" </c:otherwise> </c:choose>
但是当${article.author}为空时,页面输出的结果总是value,而不是value="",这个问题有什么办法解决吗?
java jstl HTML JSP
去掉value=
修改后代码:
<c:choose> <c:when test="${article.author != null}"> ${article.author} </c:when> <c:otherwise> </c:otherwise>
jstl标签c:set使用的问题
在linux下tomcat不能解析使用了jstl的jsp页面
关于 javax.servlet.ServletException: non-HTTP req...
Springmvc的controller返回的modelAndView(jsonSuccess...
解决 android解析html时 里面有表格、图片、word、pdf等,有没有把所有内容解...
在数据库中保留了文章的样式,在前台页面怎样显示带样式的文章呢?
MDX和MDD文件格式分析和操作