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


HTML onsubmit用法及代码示例


提交表单时,将触发HTML中的onsubmit事件属性。

用法:

<form onsubmit = "script">

属性值:此属性包含单值脚本,该脚本在onsubmit事件调用时起作用。

Note:此属性只能在form标签内使用。

例:



<!DOCTYPE html > 
<html> 
    <head> 
        <title>onsubmit event attribute</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
        </style> 
        <script> 
            function Geeks() { 
                alert("Form submitted successfully.") ; 
            }  
        </script > 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>onsubmit event attribute</h2> 
        <form onsubmit = "Geeks()"> 
            First Name:<input type = "text" value = "" /><br/> 
            Last Name:<input type = "text" value = "" /><br/> 
            <input type = "submit" value = "Submit" /> 
        </form> 
    </body> 
</html>                    

输出:
onsubmit

支持的浏览器:下面列出了onsubmit event属性支持的浏览器:

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




相关用法


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