日期:2014-05-16 浏览次数:20457 次
显示后台的信息(如果有的话)
<c:if test="${!empty message}">
??? <div id="msgDiv" class="msg_w" align="center">
??? ??? <font color="red"><c:out value="${message}" /> </font>
??? ??? <a href="" onclick="closeMsg();return false;" style="color: black">[点击关闭]</a>
??? </div>
</c:if>
?
提示框样式
.msg_w {
??? background: none repeat scroll 0 0 #F2FDDB;
??? border: 1px solid #ADCF66;
??? margin: 10px 0;
??? padding: 10px;
}
?
提示框动作
function closeMsg(){
??? $("#msgDiv").hide();
}