﻿
//----------会员注销------start---//

function LoginOut()
{
     $.ajax({
        type: "POST",
        dataType:"json",
        url:"/control/LoginOut.ashx"
    });
   
}
//--------页面加载判定会员登陆状态-----------//
function LoginStatus()
{
    $.ajax({
        type:"post",
        dataType:"json",
        url:"/control/LoginStatus.ashx",
        success:function(json)
        {
            if(json.loginState=='true')
            {
                window.open("/product/list-2--.html");
            }
            else
            {
                window.open("/regist/login.html");
            }
        },
        error:function(err) 
        {
            alert(err.responseText);
        }

    });



}
function checkLogin() {
    alert("请先登录！");
}


