Jquery - 如何触发 $('#myForm').submit(function()
如何在不使用表单提交的情况下触发此功能?
$('#myForm').submit(function()
{ ....
how can i trigger this function without using the form submit?
$('#myForm').submit(function()
{ ....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以尝试 -
工作演示 - http://jsfiddle.net/ipr101/KvwMb/1/
You could try -
Working demo - http://jsfiddle.net/ipr101/KvwMb/1/
您可以直接使用这样的东西
,或者您可以从任何 JavaScript 代码中使用它。这将触发您的
$('#myForm').submit(function(){.....
函数代码。You can directly use something like this
Or you can use it from any javascript code. Which will trigger your
$('#myForm').submit(function(){.....
function code.将其添加到函数中将停止表单提交。
或者,如果您想在不同的事件上调用函数,请将函数放入适当的事件处理程序中(单击非提交按钮?)
adding this to function will stop the form submitting.
Or if you want to call function on a different event put the function in an appropriate event handler (a non-submit button's click?)
jQuery
jquery
你必须从 DOM 数据中挖掘它。但是,我告诉你,不推荐。尝试一下,
如果处理程序函数附加到表单“提交”,它将显示为,
现在,如果一切顺利,最多您可以获得
submit_list
作为附加到的所有处理程序对象的列表提交表单事件。快捷方式:
假设您有且仅有一个处理程序附加到
#myForm
的提交事件,这就是您的函数。
使用
data()
,但请记住不推荐这样做。快乐编码。You will have to dig it from DOM data. But, let me tell you, its not recommended. Try this,
If the handler function is attached to form 'submit', it will be present as,
Now, if all goes well, at best you can get
submit_list
as list of all the handler objects attached to submit event of form.Shortcut:
Assuming you have one and only one handler attached to submit event for
#myForm
,is your function.
Play with
data()
, but remember its not recommended. Happy Coding.