当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > onsubmit 事件
The onsubmit event occurs when the submit button in a form is clicked.
当一个表单的被提交时,触发onsubmit事件。
onsubmit="所要执行的JavaScript脚本" |
Parameter 参数 | Description 描述 |
---|---|
SomeJavaScriptCode 所要执行的JavaScript脚本 | Required. Specifies a JavaScript to be executed when the event occurs. 必选项。当事件被触发时所要执行的脚本。 |
Supported by the following HTML tags:
支持的HTML标签:
<form> |
Supported by the following JavaScript objects:
支持的JavaScript对象:
form |
In this example an alert box displays when a submit box is used:
在下面的例子中,在表单被提交时将出现一个消息框。
<form name="testform" action="jsref_onsubmit.asp" 你的姓名:<br /> </form> |
The output of the code above will be:
上述代码的输出结果为
onsubmit
How to use onsubmit
如何应用onsubmit。.