fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <p>示例列表:</p> <ul><li>Coffee</li><li>Tea</li></ul> <p id="demo">单击按钮获取第一个列表项的父节点的节点名称。</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x=document.getElementById("demo"); var y=document.getElementsByTagName("LI")[0]; x.innerHTML=y.parentNode.nodeName; } </script> </body> </html>
运行结果