當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Form action用法及代碼示例


HTML DOM中的Form動作屬性用於設置或返回Form的action屬性的值。提交表單後,將調用action屬性。提交表單後,表單數據將發送到服務器。

用法:

  • 它用於返回action屬性。
    formObject.action
  • 用於設置動作屬性。
    formObject.action = URL
  • 屬性值:


    • URL:用於指定提交表單後將數據發送到的文檔的URL。
      URL的可能值為:
      • absolute URL:它指向另一個網站鏈接。例如:www.gfg.org
      • relative URL:它用於指向網頁中的文件。例如:www.geeksforgeeks.org

    返回值:它返回一個字符串值,該字符串值表示表單的URL。

    範例1:這個例子說明如何設置操作屬性。

    <!DOCTYPE html>  
    <html>  
      
    <head> 
        <title> 
            HTML DOM Form action Property 
        </title> 
    </head> 
      
    <body>  
        <h1>GeeksforGeeks</h1> 
          
        <h2>DOM Form action Property</h2> 
          
        <form action="#" method="post" id="users">  
          
            <label for="username">Username:</label>  
            <input type="text" name="username" id="Username"> 
              
            <br><br> 
              
            <label for="password">Paswword:</label> 
            <input type="password" name="password"> 
        </form> 
          
        <br> 
          
        <button onclick = "myGeeks()"> 
            Submit 
        </button>  
          
        <p id = "GFG"></p> 
          
        <!-- script to set action page -->
        <script> 
        function myGeeks() { 
            var x = document.getElementById("users").action 
                    = "/gfg.php"; 
                      
            document.getElementById("GFG").innerHTML 
                = "Action page Changed"; 
        } 
        </script> 
    </body>  
      
    </html>                    

    輸出:
    在單擊按鈕之前:

    單擊按鈕後:

    範例2:本示例返回action屬性。

    <!DOCTYPE html>  
    <html>  
      
    <head> 
        <title> 
            HTML DOM Form action Property 
        </title> 
    </head> 
      
    <body>  
        <h1>GeeksforGeeks</h1> 
          
        <h2>DOM Form action Property</h2> 
          
        <form action="test.php" method="post" id="users">  
          
            <label for="username">Username:</label>  
            <input type="text" name="username" id="Username"> 
              
            <br><br> 
              
            <label for="password">Paswword:</label> 
            <input type="password" name="password"> 
        </form> 
          
        <br> 
          
        <button onclick="myGeeks()"> 
            Submit 
        </button>  
          
        <p id = "GFG"></p> 
          
        <!-- script to return the the URL where  
                send the form data -->
        <script> 
            function myGeeks() { 
                var act = document.getElementById("users").action; 
                document.getElementById("GFG").innerHTML = act; 
            } 
        </script> 
    </body>  
      
    </html>                    

    輸出:
    在單擊按鈕之前:

    單擊按鈕後:

    支持的瀏覽器:下麵列出了DOM Form action屬性支持的瀏覽器:

    • 穀歌瀏覽器
    • IE瀏覽器
    • Firefox
    • Opera
    • Safari


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Form action Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。