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

请大家帮忙看看我的元素节点为什么是空的

默认代码  

function get_previousSibling(n){
        var x=n.previousSibling;
        while (x && x.nodeType!=1){
            x=x.previousSibling;
        }
        return x;
    }
    
    var x=document.getElementsByTagName("li")[4];
    document.write(x.nodeName);
    document.write(" = ");
    document.write(x.innerHTML);
    
    var y=get_previousSibling(x);
    
    if(y!=null){
        document.write("<br />nextsibling: ");
        document.write(y.nodeName);
        document.write(" = ");
        document.write(y.innerHTML);
    }else{
      document.write("<br>已经是最后一个节点");      
    }

我的代码

   function get_previousSibing(m){
        var z=m.previousSibing;
        while(z && z.nodeType!=1){
            z=z.previousSibing;
        }
        return z;
    }
    var z=document.getElementsByTagName("li")[2];
    document.write("<br><br>")
    document.write(z.nodeName+"="+z.innerHTML);
    
    var d=get_previousSibing(z);
    if(d!=null)
    {
    document.write("<br  />previoussibling:"+d.nodeName+" = "+d.innerHTML);
    }
    else {
    document.write("<br>已经是最后一个节点");
    }
   

正在回答

1 回答

你的获取前节点的拼写出错,z=m.previousSibing是错误的,应该是z=m.previousSibling

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请大家帮忙看看我的元素节点为什么是空的

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信