jQuery .submit()
.submit()
.submit( handler )Returns: jQuery
Description: Bind an event handler to the "submit" JavaScript event, or trigger that event on an element.
-
version added: 1.0.submit( handler )
-
handlerA function to execute each time the event is triggered.
-
-
version added: 1.4.3.submit( [eventData ], handler )
-
eventDataType: AnythingAn object containing data that will be passed to the event handler.
-
handlerA function to execute each time the event is triggered.
-
-
version added: 1.0.submit()
-
This signature does not accept any arguments.
-
This method is a shortcut for .on( "submit", handler )
in the first variation, and .trigger( "submit" )
in the third.
The submit
event is sent to an element when the user is attempting to submit a form.
It can only be attached to <form>
elements. Forms can be submitted either by clicking an explicit <input type="submit">
, <input type="image">
, or <button type="submit">
, or by pressing Enter when certain form elements have focus.
Depending on the browser, the Enter key may only cause a form submission if the form has exactly one text field, or only when there is a submit button present. The interface should not rely on a particular behavior for this key unless the issue is forced by observing the keypress event for presses of the Enter key.
For example, consider the HTML:
<form id="target" action="destination.html"> <input type="text" value="Hello there"> <input type="submit" value="Go"> </form> <div id="other"> Trigger the handler </div>
The event handler can be bound to the form:
$( "#target" ).submit(function( event ) { alert( "Handler for .submit() called." ); event.preventDefault(); });
Now when the form is submitted, the message is alerted. This happens prior to the actual submission, so we can cancel the submit action by calling .preventDefault()
on the event object or by returning false
from our handler. We can trigger the event manually when another element is clicked:
$( "#other" ).click(function() { $( "#target" ).submit(); });
After this code executes, clicks on Trigger the handler will also display the message. In addition, the default submit
action on the form will be fired, so the form will be submitted.
The JavaScript submit
event does not bubble in Internet Explorer.
However, scripts that rely on event delegation with the submit
event will work consistently across browsers as of jQuery 1.4, which has normalized the event's behavior.
Additional Notes:
- As the
.submit()
method is just a shorthand for.on( "submit", handler )
, detaching is possible using.off( "submit" )
. - Forms and their child elements should not use input names or ids that conflict with properties of a form, such as
submit
,length
, ormethod
. Name conflicts can cause confusing failures. For a complete list of rules and to check your markup for these problems, see DOMLint.
作者:Chuck Lu GitHub |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
2018-07-11 css pseudo classes
2018-07-11 Kentico中的skin.css的加载
2017-07-11 sc命令以及InstallUtil安装service
2016-07-11 TeeChart曲线平滑 Line.Smoothed
2014-07-11 UDP的socketasynceventargs
2014-07-11 项目管理,各种文件的存放位置