ajax响应未执行

时间:2016-06-04 08:35:39

标签: javascript jquery ajax ruby-on-rails-4

我在资产/应用程序下创建了一个js文件。在这里我遇到了一个问题,其中id response.execute(alert(“works”))有效,但是response.execute(function(){alert(“not works”)})不起作用。

    this.create = function () {
      var data = jQuery(this).closest('form').serialize();
      POST(jQuery(this).closest('form').attr('action'), data);
      response.execute(alert("hi")); // it works
      response.execute(function(){
        alert("hello") // not works
      });

    }

0 个答案:

没有答案