如何为所有表单提交事件编写通用 js 函数?
我想为我的应用程序中的所有表单提交事件编写一个 js/jquery 函数。
目前我正在在 3 个位置这样进行硬编码,并且它正在工作,但我必须分别为每个表单创建一个函数:
jQuery('#myForm').live('submit',function(event) { // #myForm hardcoded here
$.ajax({
url: 'one.php', // one.php hardcoded here
type: 'POST',
data: $('#myForm').serialize(), // #myForm hardcoded here
success: function( data ) {
alert(data);
}
});
return false;
});
谢谢
I want to code a single js/jquery function for all forms submit events in my application.
Currently I am hardcoding on 3 locations like that and it is working but I have to create a function for each form separately:
jQuery('#myForm').live('submit',function(event) { // #myForm hardcoded here
$.ajax({
url: 'one.php', // one.php hardcoded here
type: 'POST',
data: $('#myForm').serialize(), // #myForm hardcoded here
success: function( data ) {
alert(data);
}
});
return false;
});
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)