zoukankan      html  css  js  c++  java
  • 节点的层次关系

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="utf-8">

    <title></title>

    <script type="text/javascript" src="new_file.js"></script>

    </head>

    <body>

    <input type="radio" name="" /><input type="text" name="" /><div id="box">

    <span>我是span1</span>

    <span>我是span2</span></div><input type="text" name="" />

    <script type="text/javascript">

     

    // 怎么获取前面所有的兄弟元素??????

     

     

    var oDiv = $("box");

    // 1.获取所有的子节点 childNodes

    console.log( oDiv.innerText );

    // 2.获取第一个子节点 firstChild

    console.log( oDiv.firstChild );

    // 3.获取最后一个子节点 lastChild

    console.log( oDiv.lastChild );

    // 4.获取父节点  parentNode

    console.log( oDiv.parentNode );

     

    ////////////////兄弟关系/////////////////

    // 5.获取前一个兄弟节点  previousSibling

    console.log( oDiv.previousSibling );

    // 6.获取下一个兄弟节点  nextSibling

    console.log( oDiv.nextSibling );

     

    ///////////////////根节点/////////////////

    console.log( oDiv.ownerDocument );

     

     

    </script>

    </body>

    </html>

  • 相关阅读:
    IEEE754二进制浮点数算术标准
    符号三角形代码勘误
    最近点对问题
    【Unsolved】线性时间选择算法的复杂度证明
    解决mosh: Nothing received from server on UDP port 60001 环境: centos7.1
    半导体测试基础
    python进程------multiprocessing包
    python线程------queue、生产者和消费者模式
    pyhon——线程同步条件(event)
    os 模块
  • 原文地址:https://www.cnblogs.com/d-z-j-boke/p/9621506.html
Copyright © 2011-2022 走看看