前台获取信息进行跳转

1、不在js中

<c:if test="${empty sessionScope.adminAccount}">
       <c:redirect url="${ctx}/yxladmin.jsp" context="/" />
</c:if>

 

2、在js中

if($.trim("${sessionScope.adminAccount}") == "")
{
       top.location.href="${ctx}/yxladmin.jsp";
}

posted on 2013-09-03 16:56  专注2018  阅读(192)  评论(0编辑  收藏  举报