Heim >Web-Frontend >js-Tutorial >利用js(jquery)操作Cookie的方法说明_jquery

利用js(jquery)操作Cookie的方法说明_jquery

WBOY
WBOYOriginal
2016-05-16 17:08:091094Durchsuche

Cookie操作是我们在Web开发中经常会用到的功能,以往我们一般是通过javascript实现的。下面这款jquery插件是专门用来进行cookie操作

的,包括cookie的添加、清除、读取……
你可以在这款插件的主页下载到它:http://jquery.com/
当在页面中引用了jquery文件及该插件文件后,可进行如下操作:

设置cookie
设置一个名称为blog,值为css9.net的cookie:
$.cookie("blog", "css9.net");设置一个名称为blog,值为css9.net的cookie,同时设置过期时间(expires属性)为7天:
$.cookie("blog", "css9.net", { expires: 7 });设置一个名称为blog,值为css9.net的cookie,设置过期时间(expires属性)为7天,同

时设置cookie的path属性为”/admin”
$.cookie("blog", "css9.net", { path: '/admin', expires: 7 });读取Cookie:
读取名称为blog的cookie值:
alert( $.cookie("blog") );删除cookie:
$.cookie("example", null);
下载的js文件中有更详细的解释说明

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn