当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Input Image formAction用法及代码示例


HTML DOM中的输入图像formAction属性用于设置或返回输入图像的formAction属性的值。提交表单后,将调用formAction属性。提交表单后,表单数据将发送到服务器。它覆盖了<form>元素的action属性的函数。

用法:

  • 它返回formAction属性。
    imageObject.formAction
  • 它用于设置formAction属性。
    imageObject.formAction = URL 

属性值:它包含一个单值URL,该URL用于指定提交表单后将数据发送到的文档的URL。


    URL的可能值为:
  • absolute URL:它指向页面的完整地址。例如:www.geeksforgeeks.org/data-structure
  • relative URL:它用于指向网页中的文件。例如:gfg.php

返回值:它返回一个字符串值,该字符串值表示表单的URL。

范例1:本示例说明如何返回formAction属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image formAction 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
      GeeksforGeeks  
    </h1> 
  
    <h4> 
      DOM Input Image formAction Property</h4> 
    <button onclick="my_geek()"> 
        <input id="myImage" type="image" formAction="test.php" src= 
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" 
               alt="Submit" width="48" height="48" formMethod="post" 
               formNoValidate> 
    </button> 
  
    <h2 id="Geek_h" style="color:green;"></h2> 
    <script> 
        function my_geek() { 
  
            // Return target, alt and height.  
            var txt = document.getElementById( 
                "myImage").formAction; 
            document.getElementById( 
                "Geek_h").innerHTML = txt; 
        } 
    </script> 
</body> 
  
</html>

输出:

  • 在单击按钮之前:
  • 单击按钮后:

范例2:本示例说明如何设置formAction属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image formAction 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
     GeeksforGeeks  
    </h1> 
  
    <h4> 
     DOM Input Image formAction Property 
    </h4> 
    <button onclick="my_geek()"> 
        <input id="myImage" type="image" formAction="test.php" src= 
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" 
               alt="Submit" width="48" height="48" formMethod="post" 
               formNoValidate> 
    </button> 
  
    <h2 id="Geek_h" style="color:green;"></h2> 
    <script> 
        function my_geek() { 
  
            // Return target, alt and height.  
            var txt = document.getElementById( 
                "myImage").formAction = "www.geeksforgeeks.org"; 
            document.getElementById( 
                "Geek_h").innerHTML = "The formAction was changed to " 
                 + txt; 
        } 
    </script> 
</body> 
  
</html>

输出:

  • 在单击按钮之前:
  • 单击按钮后:

支持的浏览器:下面列出了HTML DOM输入图像formAction属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Image formAction Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。