zoukankan      html  css  js  c++  java
  • DOM对象操作HTML元素和消息对话框(alert,confirm,prompt)(二)

    如果你是真的学习请把下面的敲一遍

    <div id="divid">
        <p id="pid">div内的p元素</p>
        nihaoya
    </div>

    function getParentNode(){
            var childNode=document.getElementById("pid");
            var parentnode = childNode.parentNode;
            alert(parentnode.nodeName);
        }
        function createElementNode(){
            var body=document.body;
            var input=document.createElement("input");
            input.type="button";
            input.value="按钮";
            input.onclick=function(){
                alert("我是使用document.createElement("input")创建的一个按钮");
            }
            body.appendChild(input);
        }
        function createTextNode(){
            var body=document.body;
            var text=document.createTextNode("wojiaoyangmaotou");
            body.appendChild(text);
        }
        function insertBefore(){
            var div=document.getElementById("divid");
            var pid=document.getElementById("pid");
            var childnode=document.createTextNode("输入的用户名或密码错误");
            div.insertBefore(childnode,pid);
        }
        function removechild(){
            var div=document.getElementById("divid");
            var pid=document.getElementById("pid");
            div.removeChild(pid);
        }
        function getsize(){
            var width=document.body.offsetWidth||document.documentElement.offsetWidth;
            var height=document.body.offsetHeight||document.documentElement.offsetHeight;
            alert(width+","+height);
        }

        //getParentNode();
        //createElementNode();
        //createTextNode();
        //insertBefore();
        //removechild();
        getsize();

  • 相关阅读:
    统计一个字符串中字母、空格和数字的个数
    java 将一个数组中的值按逆序重新存放,例如,原来顺序为:9,5,7,4,8,要求改为:8,4,7, 5,9。
    java判断一个数是否为素数[转]
    Set集合
    List&ArrayList&LinkedList
    java_异常
    内部类&匿名内部类
    多态&抽象类&接口
    数组排序和字符串
    Java笔记_数据类型和运算符
  • 原文地址:https://www.cnblogs.com/YangMT/p/4864020.html
Copyright © 2011-2022 走看看