코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML input tag - formmethod attribute</title> </head> <body> <form action="/examples/media/action_target.php" method="get"> 이름 : <input type="text" name="st_name"><br> 학번 : <input type="text" name="st_id"><br> <input type="submit" formmethod="GET"> <input type="submit" formmethod="POST" value="POST 방식으로 제출"> </form> </body> </html>