我有一张表格。我想在表单提交上执行我的AJAX调用,并且只有在执行后继续提交表单。
以下是代码示例:
$('myform').observe('submit', function(e) {
e.stop();
new Ajax.Request('/myurl', {
method:'get',
onComplete: function(transport) {
//Here I would like to continue form submitting
},
});
});