Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

양식이 HTML로 제출될 때 양식 데이터를 보낼 위치를 설정하시겠습니까?


형성 사용 HTML의 속성을 사용하여 양식이 HTML로 제출될 때 양식 데이터를 보낼 위치를 설정합니다.

예시

다음 코드를 실행하여 formaction을 구현할 수 있습니다. 속성 -

<!DOCTYPE html>
<html>
   <head>
      <title>HTML formaction attribute</title>
   </head>
   <body>
      <form action = "/new1.php" method = "get">
         Student name: <input type ="text" name = "name"><br>
         Student Subject: <input type = "text" name = "subject"><br>
         <button type = "submit">Submit</button><br>
         <button type = "submit" formaction = "/new2.php">Another page</button>
      </form>
   </body>
</html>