运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The previousElementSibling Property</h2> <ul> <li id="item1">Coffee (first item)</li> <li id="item2">Tea (second item)</li> </ul> <p>The previous sibling of the second list item has the text:</p> <p id="demo"></p> <script> let text = document.getElementById("item2").previousElementSibling.innerHTML; document.getElementById("demo").innerHTML = text; </script> </body> </html>