为了账号安全,请及时绑定邮箱和手机立即绑定

JavaScript进阶篇

难度入门
时长 8小时55分
学习人数
综合评分9.47
2557人评价 查看评价
9.7 内容实用
9.4 简洁易懂
9.3 逻辑清晰
  • 获取指定节点的父节点

    注意:父节点只能有一个。

    访问祖节点:

    elementNode.parentNode.parentNode


    查看全部
  • 一、firstChild 属性返回‘childNodes’数组的第一个子节点。如果选定的节点没有子节点,则该属性返回 NULL。

    语法:

    node.firstChild

    说明:与elementNode.childNodes[0]是同样的效果。 

    二、 lastChild 属性返回‘childNodes’数组的最后一个子节点。如果选定的节点没有子节点,则该属性返回 NULL。

    语法:

    node.lastChild

    说明:与elementNode.childNodes[elementNode.childNodes.length-1]是同样的效果。 


    查看全部
  • 访问选定元素节点下的所有子节点的列表,返回的值可以看作是一个数组,他具有length属性

    elementNode.childNodes

    如果选定的节点没有子节点,则该属性返回不包含节点的 NodeList。

    查看全部
  • 1. nodeName : 节点的名称

    2. nodeValue :节点的值

    3. nodeType :节点的类型

    一、nodeName 属性: 节点的名称,是只读的。

    1. 元素节点的 nodeName 与标签名相同
    2. 属性节点的 nodeName 是属性的名称
    3. 文本节点的 nodeName 永远是 #text
    4. 文档节点的 nodeName 永远是 #document

    二、nodeValue 属性:节点的值

    1. 元素节点的 nodeValue 是 undefined 或 null
    2. 文本节点的 nodeValue 是文本自身
    3. 属性节点的 nodeValue 是属性的值

    三、nodeType 属性: 节点的类型,是只读的。以下常用的几种结点类型:

    元素类型    节点类型
      元素          1
      属性          2
      文本          3
      注释          8
      文档          9


    查看全部
    0 采集 收起 来源:节点属性

    2019-12-09

  • setAttribute() 方法增加一个指定名称和值的新属性,或者把一个现有的属性设定为指定的值.

    elementNode.setAttribute(name,value)

    说明:

    1.name: 要设置的属性名。

    2.value: 要设置的属性值。

    注意:

    1.把指定的属性设置为指定的值。如果不存在具有指定名称的属性,该方法将创建一个新属性。

    2.类似于getAttribute()方法,setAttribute()方法只能通过元素节点对象调用的函数。


    查看全部
  • 通过元素节点的属性名称获取属性的值。

    elementNode.getAttribute(name)

    1. elementNode:使用getElementById()、getElementsByTagName()等方法,获取到的元素节点。

    2. name:要想查询的元素节点的属性名字


    查看全部
  • function getValue()

              {

                 var myH= document.getElementById("myHead");

                  alert(myH.innerHTML)

              }

              function getElements()

              {

                var myS=document.getElementsByName("sex");

                 alert(myS.length);

              }


              function getTagElements()

              {

                 var myI= document.getElementsByTagName("input");

                  alert(myI.length);

              }


    查看全部
  • function onclick(){...}

    function onmouseover(){...}

    funbction onmouseout(){...}

    function onfocus(){...}

    function onblur(){...}

    function onselect(){...}

    function onchange(){...}

    function onload(){...}

    function onumload(){...}


    查看全部
  • document.write("可用宽度:" +screen.availWidth );

    document.write("可用高度:" +screen.availHeight ); 


    查看全部
  • document.write( "屏幕宽度:"+screen.width+"px<br/>");

        document.write( "屏幕高度:"+screen.height+"px<br/>");    


    查看全部
  • var u_agent = navigator.userAgent ;

    <input type="button" value="查看浏览器"  onclick="validB()" >


    查看全部
    0 采集 收起 来源:userAgent

    2019-12-09

    • screen.width 

    • screen.height

    • screen.availWidth

    • screen.availHeight

    Screen对象获取屏幕宽高与可用宽高

    查看全部
  • document.write(window.location.href); 

    查看全部
    0 采集 收起 来源:Location对象

    2019-12-09

  •  function GoBack() {

            window.history.go(-1);    

            }


            function GoForward() {

            window.history.go(1);      

            }


    查看全部
  • function GoBack() {

            window.history.go(-1); 

            }


    查看全部

举报

0/150
提交
取消
课程须知
你需要具备HTML、css基础知识,建议同学们也可以想学习下js入门篇,快速认识js,熟悉js基本语法,更加快速入手进阶篇!
老师告诉你能学到什么?
通过JavaScript学习,掌握基本语法,制作简单交互式页面

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!