- 1、本文档共14页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JS cookie信息
1 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
2 cookieEnabled 属性可返回一个布尔值,如果浏览器启用了 cookie,该属性值为 true。如果禁用了 cookie,则值为 false。
语法
navigator.cookieEnabled
实例
html
body
script type=text/javascript
document.write(pCookieEnabled: )
document.write(navigator.cookieEnabled + /p)
/script
/body
/html
3 coords 属性设置或返回一个逗号分隔列表,其中包含了图像映射中一个链接的坐标。
语法
anchorObject.coords=coordinates
实例
下面的例子可返回图像映射中一个链接的坐标:
html
body
img src=planets.gif
width=145 height=126
usemap=#planetmap /
map name=planetmap
area id=venus shape=circle
coords=124,58,8
alt=Venus
href=venus.htm /
/map
pVenus coordinates:
script type=text/javascript
x=document.getElementById(venus);
document.write(x.coords);
/script
/p
/body
/html
4 coords 属性可设置或返回图像映射中某个可点击区域的坐标。
语法
areaObject.coords=coordinates
实例
下面的例子可返回图像映射中某个可点击区域的坐标:
html
body
img src=planets.gif
width=145 height=126
usemap=#planetmap /
map name=planetmap
area id=venus shape=circle
coords=124,58,8
alt=Venus
href=venus.htm /
/map
pVenus coordinates:
script type=text/javascript
x=document.getElementById(venus);
document.write(x.coords);
/script
/p
/body
/html
5 cpuClass 属性可返回浏览器系统的 CPU 等级。
语法
navigator.cpuClassd
实例
html
body
script type=text/javascript
document.write(pCPUClass: )
document.write(navigator.cpuClass + /p)
/script
/body
/html
createCaption() 方法用于在表格中获取或创建 caption 元素。
语法
tableObject.createCaption()
返回值
返回一个 HTMLElement 对象,表示该表的 caption 元素。如果该表格已经有了标题,则返回它。如果该表没有 caption 元素,则创建一个新的空 caption 元素,把它插入表格,并返回它。
实例
下面的例子为表格创建了一个标题:
html
head
script type=text/javascript
function createCaption()
{
var x=document.getElementById(myTable).createCaption()
x.innerHTML=My table caption
}
/script
/head
body
table id=myTable border=1
tr
tdRow1 cell1/td
tdRow1 cell2/td
/tr
tr
tdRow2 cell1/td
tdRow2 cell2/td
/tr
/table
br /
input
文档评论(0)