最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I run code right before the jQuery submit() executes? - Stack Overflow

programmeradmin3浏览0评论

Basically, I have a form and a validation function that executes when a form is submitted. However, I want some other codes to run before the validation runs. I tried this: How to order events bound with jQuery, but it does not work.

Here's what I have:

  $('form').submit(function(){
    $('form').trigger('before-submit');

    if($(this).find('error').exists(event))
      event.preventDefault();
  });


  $('form').bind('before-submit', function(e) {
    if($('#url').val=='http://')
      $('#url').val('');
      alert('test');
  });

Basically, I have a form and a validation function that executes when a form is submitted. However, I want some other codes to run before the validation runs. I tried this: How to order events bound with jQuery, but it does not work.

Here's what I have:

  $('form').submit(function(){
    $('form').trigger('before-submit');

    if($(this).find('error').exists(event))
      event.preventDefault();
  });


  $('form').bind('before-submit', function(e) {
    if($('#url').val=='http://')
      $('#url').val('');
      alert('test');
  });
Share Improve this question edited May 23, 2017 at 11:45 CommunityBot 11 silver badge asked Nov 25, 2011 at 1:20 Leo JiangLeo Jiang 26.3k59 gold badges177 silver badges328 bronze badges 3
  • Why not literally put a call to "some other codes" right before you do the validation? – jli Commented Nov 25, 2011 at 1:35
  • The first part is in an external file, the second part is generated with PHP. – Leo Jiang Commented Nov 25, 2011 at 2:12
  • You could still have a call to a function right before the validation, and then define that function somewhere else. – jli Commented Nov 25, 2011 at 2:13
Add a ment  | 

2 Answers 2

Reset to default 9

You could do:

$(function() {
     $('#formLogin').submit( function() {
         alert("Something"); //do something else here
         return true;
     });
});

how about this:

$('form').submit(function(){
  beforeSubmit(function(){
    // this function is the 'callback' function
    if($(this).find('error').exists(event))
      event.preventDefault();
  });
});

function beforeSubmit(fn) {
  if($('#url').val=='http://'){
    $('#url').val('');
    alert('test');
  }
  // call the 'callback' function you gave as argument
  fn();
}
发布评论

评论列表(0)

  1. 暂无评论