现在的位置: 首页 > 综合 > 正文

HTML DOM cookie 集合

2013年11月22日 ⁄ 综合 ⁄ 共 345字 ⁄ 字号 评论关闭
文章目录

HTML DOM cookie 属性

HTML DOM Document 对象参考手册

定义和用法

cookie 属性可设置或查询与当前文档相关的所有 cookie。

语法

document.cookie

说明

该属性是一个可读可写的字符串,可使用该属性对当前文档的 cookie 进行读取、创建、修改和删除操作。

提示和注释

提示:该属性的行为与普通的读/写属性是不同的。

实例

<html>
<body>

The cookies associated with this document is: 
<script type="text/javascript">
document.write(document.cookie)
</script>

</body>
</html>

TIY

返回与当前文档相关的 cookie

HTML DOM Document 对象参考手册

抱歉!评论已关闭.