cookie Property--------------------------------------------------------------------------------Sets or retrieves the string value of a cookie.SyntaxHTML N/A 
Scripting document.cookie [ = sCookie ] Possible ValuessCookie String that specifies or receives the name=value; pair(s), plus any of the following values: expires=date; Setting no expiration date on a cookie causes it to expire when the browser closes. If you set an expiration date in the future, the cookie is saved across browser sessions. If you set an expiration date in the past, the cookie is deleted. Use GMT format to specify the date.  
domain=domainname; Setting the domain of the cookie allows pages on a domain made up of more than one server to share cookie information.  
path=path; Setting a path for the cookie allows the current document to share cookie information with other pages within the same domain梩hat is, if the path is set to /thispathname, all pages in /thispathname and all pages in subfolders of /thispathname can access the same cookie information.  
secure; Setting a cookie as secure; means the stored cookie information can be accessed only from a secure environment. 
 The property is read/write. The property has no default value.Expressions can be used in place of the preceding value(s), as of Microsoft?Internet Explorer 5. For more information, see Dynamic Properties.ResA cookie is a small piece of information stored by the browser. Each cookie is stored in a name=value; pair called a crumb梩hat is, if the cookie name is "id" and you want to save the id's value as "this", the cookie would be saved as id=this. You can store up to 20 name=value pairs in the cookie, and the cookie is always returned as a string of all the cookies that apply to the page. This means that you must parse the string returned to find the values of individual cookies.You can use the Microsoft?JScript?(compatible with ECMA 262 language specification)?A HREF="http://msdn.microsoft.com/scripting" TARGET="_top">split  method to extract a value stored in a cookie. ExampleThis example creates a cookie with a specified name and value. The value is passed to the JScript?B>escape function to ensure that the value only contains valid characters. When the cookie is retrieved, the JScript unescape function should be used to translate the value back to its original form.<SCRIPT>
// Create a cookie with the specified name and value.
// The cookie expires at the end of the 20th century.
function SetCookie(sName, sValue)
{
  document.cookie = sName + "=" + escape(sValue) + "; 
  expires=Mon, 31 Dec 1999 23:59:59 UTC;";
}
</SCRIPT>
This example retrieves the value of the portion of the cookie specified by the sCookie parameter.<SCRIPT>
// Retrieve the value of the cookie with the specified name.
function GetCookie(sName)
{
  // cookies are separated by semicolons
  var aCookie = document.cookie.split("; ");
  for (var i=0; i < aCookie.length; i++)
  {
    // a name/value pair (a crumb) is separated by an equal sign
    var aCrumb = aCookie[i].split("=");
    if (sName == aCrumb[0]) 
      return unescape(aCrumb[1]);
  }  // a cookie with the requested name does not exist
  return null;
}
</SCRIPT>

解决方案 »

  1.   

    document.cookie给个function、可以提取主键/主子键的cookie
    // getCookie("bbs","username") getCookie("bbs") 获取cookie,可选子键
    function getCookie(mainKey,subKey) {
    var reg = new RegExp("(^| )"+mainKey+"=([^;]*)(;|$)");
    var arr = document.cookie.match(reg);
    if (arguments.length == 2) {
    if (arr!=null)
    return key(subKey,arr[2]);
    else
    return null;
    } else if (arguments.length == 1) {
    if (arr!=null)
    return unescape(arr[2]);
    else
    return null;
    } function key(subKey,findWith) {
    var arr,reg = new RegExp("(^| |&)"+subKey+"=([^&]*)(&|$)");
    var findWith = findWith?findWith:document.cookie;
    if (arr =  findWith.match(reg))
    return unescape(arr[2]);
    else
    return null;
    }
    }