fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <form id="myForm"> <fieldset> <legend id="myLegend">Personalia:</legend> 用户名: <input type="text"><br> Email: <input type="text"> </fieldset> </form> <p>点击“尝试一下”按钮返回 legend 所属的表单的 id。</p> <p id="demo"></p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction(){ var x = document.getElementById("myLegend").form.id; document.getElementById("demo").innerHTML=x; } </script> </body> </html>
运行结果