当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM lastElementChild用法及代码示例


DOM的lastElementChild属性用于返回指定元素的最后一个子元素;如果没有最后一个元素,则返回null。它与lastChild属性相似,但不同之处在于lastChild属性返回所有last-child节点,即它也包括文本和注释节点,但另一方面,lastElementChild仅将最后一个节点作为元素节点返回。这是一个只读属性。

用法:

element.lastElementChild

返回值:它返回一个代表元素的最后一个孩子的对象。如果没有子元素,则返回null。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM lastElementChild Property 
    </title> 
  
    <!-- script to find last child element -->
    <script> 
        function Geeks() { 
            var doc = 
                document.getElementById("GFG").lastElementChild.innerHTML; 
                document.getElementById("p").innerHTML = doc; 
                document.getElementById("p").style.color = "white"; 
                document.getElementById("p").style.background = "green"; 
        } 
    </script> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
            GeeksforGeeks 
        </h1> 
  
    <h2> 
            DOM lastElementChild Property 
        </h2> 
  
    <div id="GFG"> 
        <span>GeeksforGeeks!</span> 
        <span>A computer science portal for geeks.</span> 
    </div> 
  
    <br> 
    <button onclick="Geeks()"> 
        Click me! 
    </button> 
  
    <p id="p"></p> 
</body> 
  
</html>    

输出:
在单击按钮之前:
lastElementChild
单击按钮后:
lastElementChild

支持的浏览器:DOM lastElementChild属性支持的浏览器如下:

  • 谷歌浏览器2.0
  • Internet Explorer 9.0
  • Firefox 3.5
  • Opera 10.0
  • Safari 4.0


相关用法


注:本文由纯净天空筛选整理自Vishal Chaudhary 2大神的英文原创作品 HTML | DOM lastElementChild Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。