首页 > 代码库 > document
document
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <script type ="text/javascript"> window.onload = function () { document.title = "我的网页"; document.bgColor = "red"; //背景色 ,修改文档的背景色 document.fgColor = "yellow";//前景色,修改文档内容颜色 document.characterSet = "utf-8";//修改页面的编码, document.write("");//动态向页面写入内容。如果在window.onload里面写,会清空覆盖之前所有的文档内容 document.getElementById(""); document.getElementsByName("");//获取对象的集合 document.getElementsByTagName("P");//获取p元素的集合 document.all;//获取页面里的元素集合 document.forms;//获取所有表达对象的集合 document.forms[0].childNodes.length;//获取子元素的个数 document.images;//获取所有图片元素的集合 document.links;//获取所有链接的集合 } </script></head><body></body></html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。