编辑下面的代码:【加编码】
<html> <body> <p>Example list:</p> <ul id="myList"><li id="item1">Coffee</li><li id="item2">Tea</li></ul> <p id="demo">Click the button get the id of the next sibling of the first item</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var x=document.getElementById("demo"); x.innerHTML=document.getElementById("item1").nextSibling.id; } </script> <p><strong>Note:</strong> Whitespace inside elements is considered as text, and text is considered as nodes.</p> <p>Try adding whitespace between the two &amp;lt;li&amp;gt; elements, and the result will be "undefined".</p> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂