Set and delete cookies in js

Source: Internet
Author: User
Tags set cookie

This article provides operations on cookies. Let's take a look at how to set and delete cookie instances in js. Cookie is a txt file used by the client to save information.

This article provides operations on cookies. Let's take a look at how to set and delete cookie instances in js. Cookie is a txt file used by the client to save information.
<! Doctype html public "-// w3c // dtd xhtml 1.0 transitional // en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<Html xmlns = "http://www.aimeige.com.cn/1999/xhtml">
<Head>
<Meta http-equiv = "content-type" content = "text/html; charset = gb2312"/>
<Title> setting and deleting cookies in js </title>
<Script>

Function setcookie (sname, svalue, sexpires)
{
Var scookie = sname + "=" + encodeuricomponent (svalue );
If (sexpires! = Null)
{
Scookie + = "; expires =" + sexpires;
}

Document. cookie = scookie;
}

Function removecookie (sname, svalue)
{
Document. cookie = sname + "=; expires = fri, 31 dec 1999 23:59:59 gmt ;";
}

// Set cookie
Setcookie ('bkjia. c0m', 'www. bKjia. c0m', 'fri, 31 dec 2030 23:59:59 gmt ;')
// Delete the cookie
Removecookie ('bkjia. c0m', 'www. bKjia. c0m ')
</Script>
</Head>

<Body>
</Body>
</Html>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.