Blame view

src/main/webapp/common/js/checkfktoen.js 193 Bytes
caiyongsong committed
1 2 3 4 5 6 7
function checktoken(){
	var token = $.cookie('ftoken');
	if(token==undefined){
		checktokenFlag=false;//hyh  新增     用全局变量作为标识。
		window.location.href = "login.jsp";
	}
}