首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

无意中看到offsetParent,顺便就搜了上使用方法

2012-09-09 
无意中看到offsetParent,顺便就搜了下使用方法?function offset_init(){? ?var pElement document.getEl

无意中看到offsetParent,顺便就搜了下使用方法

  • ?

    function offset_init(){
    ?
    ?var pElement = document.getElementById("sonObj");
    ?
    ?parentObj = pElement.offsetParent;
    ?
    ?alert(parentObj.tagName);
    }
    ?
    </script>

    function offset_init(){
    ?
    ?var pElement = document.getElementById("sonObj");
    ?
    ?parentObj = pElement.offsetParent;
    ?
    ?alert(parentObj.tagName);
    }
    ?
    </script>

    function offset_init(){
    ?
    ?var pElement = document.getElementById("sonObj");
    ?
    ?parentObj = pElement.offsetParent;
    ?
    ?alert(parentObj.tagName);
    }
    ?
    </script>
    </head>
    <body onload="offset_init()">

    <h1 id="Grandfather">
    ? <div id="parent">div测试代码
    ?? <p id="sonObj">
    ??? ?测试OffsetParent属性
    ?? </p>
    ? </div>
    </h1>

    ?

    ?

    ?

    ?

    ?

    ?

    ?

    ?

    ?

    ?

  • 热点排行