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


HTML action属性用法及代码示例


HTML 操作属性用于指定表单提交后将表单数据发送到服务器的何处。当用户提交表单时,浏览器将数据发送到指定的 URL,允许服务器端脚本处理信息并生成响应。

注意:它可以用在form元素。

用法:

<form action="URL">

属性值:

URL:它用于指定提交表单后数据要发送到的文档的 URL。
URL 的可能值有:

URL

说明

绝对网址

它指向另一个网站链接。例如:www.gfg.org

相对网址

它用于指向网页中的文件。例如:www.geeksforgeeks.org

例子:此示例说明了 HTML 文档中操作属性的使用。

HTML


<!DOCTYPE html>
<html>
<head>
    <title>HTML action Attribute</title>
</head>
<body>
    <h1>GeeksforGeeks</h1>
    <h2>HTML action Attribute</h2>
    <form action="test.php" method="post" id="users">
        <label for="username">Username:</label>
        <input type="text" name="name" id="username"><br><br>
        <label for="password">Password:</label>
        <input type="password" name="pass"  id="password">
    </form>
    <br>
    <button onclick="myGeeks()">Submit</button><br><br>
    <b>
      After Submitting the form-data will sent 
      to the "test.php" page on the server.
      </b>
</body>
</html>

输出:

支持的浏览器:

  • 谷歌浏览器1
  • 边 12
  • 火狐1
  • Opera 15
  • 狩猎4


相关用法


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