码迷,mamicode.com
首页 > Web开发 > 详细

一:web总结

时间:2019-05-15 17:56:41      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:tag   显示   val   扩展   rman   other   and   enc   form   

一:web总结

1.jsp页面知识点巩固
1.1字符串数字格式化转换
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

整数带千分符显示:
<fmt:formatNumber?value="${num}"?type="number"/>

整数显示:
<fmt:formatNumber?value="${num}"?pattern="#"?type="number"/>

两位小数舍入显示:
<fmt:formatNumber?value="${num}"?pattern="#.##"?type="number"/>

两位小数舍入,不足两位小数补0显示:
<fmt:formatNumber?value="${num}"?pattern="0.00"?type="number"/>

货币显示:(与number类似扩展pattern)
<fmt:formatNumber?value="${num}"?type="currency"/>

百分数显示:(与number类似扩展pattern)
<fmt:formatNumber?value="${num}"?type="percent"/>
1.2 jstl标签库与EL标签库
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

//数据回显
<select name="Longflag" class="combox">
    <option value="0" ${0 eq been.longflag ? 'selected="selected"' : ''}>临时</option>
    <option value="1" ${1 eq been.longflag ? 'selected="selected"' : ''}>长期</option>
</select>

<select name="Longflag" class="combox">
    <option value="0" <c:if test="${0 eq been.longflag}">selected</c:if> >临时</option>
    <option value="1" <c:if test="${1 eq been.longflag}">selected</c:if> >长期</option>
</select>

//条件标签
<c:if test='${flag == 1}'></c:if>   //错误写法 test='${} ' 后有空格
<c:choose>
    <c:when test='p1.test_type.equals(p.test_type) and p1.test_item.equals(p.test_item)'></c:when>
    <c:when test=''></c:when>
    <c:otherwise></c:otherwise>
</c:choose>

//循环标签
<c:foreach item='${performanceList}' var='performance'></c:foreach>
2.mybatis知识巩固

后续。。。

一:web总结

标签:tag   显示   val   扩展   rman   other   and   enc   form   

原文地址:https://www.cnblogs.com/itzlg/p/10871016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!