코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML5 Input Attributes</title> </head> <body> <h1>formmethod 속성</h1> <form action="/examples/media/request.php" method="get"> 사용자 이름을 입력해주세요 : <input type="text" name="username"><br><br> <input type="submit" value="post 방식으로 전송" formmethod="post"><br> </form> </body> </html>