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