document

1160 ワード

<!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>