<script>
    window.onload = function () {
        var myLinkItem = document.getElementById('linkItem');
        var first = firstSibling(myLinkItem.parentNode);
        var last = lastSibling(myLinkItem.parentNode);
        alert(getTextContent(first));
        alert(getTextContent(last));
    }
    function lastSibling(node) {
        var tempObj = node.parentNode.lastChild;
        while (tempObj.nodeType != 1 && tempObj.previousSibling != null) {
            tempObj = tempObj.previousSibling;
        }
        return (tempObj.nodeType == 1) ? tempObj : false;
    }
    function firstSibling(node) {
        var tempObj = node.parentNode.firstChild;
        while (tempObj.nodeType != 1 && tempObj.nextSibling != null) {
            tempObj = tempObj.nextSibling;
        }
        return (tempObj.nodeType == 1) ? tempObj : false;
    }
    function getTextContent(node) {
        return node.firstChild.nodeType;
    }
</script>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-19
  • 2022-12-23
  • 2021-06-18
  • 2022-12-23
猜你喜欢
  • 2021-11-14
  • 2022-03-10
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2021-11-14
  • 2021-11-12
相关资源
相似解决方案