document对象和属性

文档对象:整个Html都属于document,他封装了大量的功能;

docum的属性:

 1 document.title             //设置文档标题等价于HTML的<title>标签
 2 document.bgColor           //设置页面背景色
 3 document.fgColor           //设置前景色(文本颜色)
 4 document.linkColor         //未点击过的链接颜色
 5 document.alinkColor        //激活链接(焦点在此链接上)的颜色
 6 document.vlinkColor        //已点击过的链接颜色
 7 document.URL               //设置URL属性从而在同一窗口打开另一网页
 8 document.fileCreatedDate   //文件建立日期,只读属性
 9 document.fileModifiedDate  //文件修改日期,只读属性
10 document.fileSize          //文件大小,只读属性
11 document.cookie            //设置和读出cookie
12 document.charset           //设置字符集 简体中文:gb2312
原文地址:https://www.cnblogs.com/yangguoe/p/7944764.html