表单提交后编写自定义代码

时间:2017-01-20 11:39:23

标签: javascript jquery forms jquery-validate optimizely

美好的一天!

我正在使用optimizely。但它的一般问题。

我有表单验证码,

$("#frmForm").validate({
    // Specify validation rules
    rules: {
      // The key name on the left side is the name attribute
      // of an input field. Validation rules are defined
      // on the right side
      email: {
        required: true,
        // Specify that email should be validated
        // by the built-in "email" rule
        email: true
      },
      password: {
        required: true,
        minlength: 5
      }
    },
    // Specify validation error messages
    messages: {

      password: {
        required: "Please provide a password",
        minlength: "Your password must be at least 5 characters long"
      },
      email: "Please enter a valid email address"
    },
    // Make sure the form is submitted to the destination defined
    // in the "action" attribute of the form when valid
    submitHandler: function(form) {

      form.submit();
    }
  });

我想写一些代码

$(window).trigger('theyClickedSubmit');

表单提交成功后。

请记住,我无法访问上面写的jquery代码。我只想在外部制作。

我们可以这样做吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

  

我想将一些代码写成$(window).trigger('theyClickedSubmit')

你会用这样的jQuery“捕获”click ......

$('#myButtonID').on('click', function() {
    alert('button was clicked');
});
  

表单提交成功后。

除非是通过ajax提交的,并且您可以访问该ajax代码,否则您将无法知道它已被提交。

  

请记住,我无法访问上面写的jquery代码。我只想在外部制作。

我们不知道这意味着什么,你的问题完全不清楚。你究竟需要捕获什么?您在form.submit() submitHandler上方放置的任何代码都会在表单验证后触发,但在提交之前。你为什么不能访问这个jQuery代码?

如果您无法访问代码,那么您可以在这里做很少的事情,特别是如果该代码在其他页面上。