兄弟节点previousSibling、nextSibling

DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>兄弟节点previousSibling、nextSiblingtitle>
    
head>
<body>
    <div>
        <a href="#">1、第一个链接a><p>2、第一个段落p><span>3、第一个spanspan>
    div>
    <script>
        var p=document.getElementsByTagName("p")[0];
        var previous=p.previousSibling;
        var next=p.nextSibling;
        console.log(previous);//1、第一个链接
        console.log(next);//3、第一个span
    script>
body>
html>

你可能感兴趣的:(兄弟节点previousSibling、nextSibling)