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

HTML에서 formaction 속성을 사용하는 방법은 무엇입니까?


formaction 속성은 양식에 두 개의 제출 버튼이 있고 두 버튼이 별도로 작동하기를 원할 때 작동합니다. 두 버튼 모두 데이터를 다른 페이지로 보냅니다. 형성 속성은 action 형식을 재정의합니다. 속성.

참고형성 속성은 Internet Explorer 9 및 이전 버전에서 지원되지 않습니다.

HTML에서 formaction 속성을 사용하는 방법은 무엇입니까?

예시

다음 코드를 실행하여 formaction 사용 방법을 배울 수 있습니다. HTML의 속성 -

<!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>