首页 > 其他 > 详细

document

时间:2014-06-14 13:05:20      阅读:288      评论:0      收藏:0      [点我收藏+]
<!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>

  

document,布布扣,bubuko.com

document

原文:http://www.cnblogs.com/sumg/p/3787777.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!