﻿//判断是否已经登录
function isLogin(){
    return document.cookie.match(new RegExp("(^| )m=([^;]*)(;|$)"))!=null;
}