gauzeehom 发表于 2013-2-1 09:48:56

jsp 页面中的提示

显示后台的信息(如果有的话)
<c:if test="${!empty message}">
    <div id="msgDiv" class="msg_w" align="center">
        <font color="red"><c:out value="${message}" /> </font>
        <a href=""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();
}
页: [1]
查看完整版本: jsp 页面中的提示