2011-09-20 15 views

回答

3

這應該幫助您開始:

function checkCookie(){ 
var username=getCookie("username"); 
    if (username!=null && username!="") 
    { 
    return true; 
    } 
    return false; 
} 


function getCookie(c_name){ 
var i,x,y,ARRcookies=document.cookie.split(";"); 
for (i=0;i<ARRcookies.length;i++) 
{ 
    x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("=")); 
    y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1); 
    x=x.replace(/^\s+|\s+$/g,""); 
    if (x==c_name) 
    { 
    return unescape(y); 
    } 
    } 
} 
相關問題