我想为我的应用程序中的所有表单提交事件编写单个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;
});
由于
答案 0 :(得分:5)
jQuery('form').live('submit',function(event) {
$.ajax({
url: $(this).attr('action'),
type: 'POST',
data: $(this).serialize(),
success: function( data ) {
alert(data);
}
});
return false;
});
答案 1 :(得分:2)