运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> <form action="/action_page.php" method="get"> First name: <input type="text" name="fname" value="Donald"><br> Last name: <input type="text" name="lname" value="Duck"><br> <button id="myBtn" type="submit" formmethod="post">Submit</button> </form> <p>Click the "Return method" button to return the value of the formmethod attribute of the submit button above.</p> <button onclick="myFunction()">Return method</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myBtn").formMethod; document.getElementById("demo").innerHTML = x; } </script> </body> </html>