jquery自定义事件返回值

时间:2012-05-05 15:20:45

标签: jquery return custom-events

我正在尝试了解有关jquery自定义事件的更多信息,因此我制作了这个简单的代码来进行测试:

<!DOCTYPE html>
<html>
    <head>
        <title>Jquery custom events</title>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
        <script>
            $(function(){
                $('#link1').click(function(){
                    var that = $(this);
                    $.ajax({
                        url: "http://localhost/jquery/index.html",

                        beforeSend: function(event){ // if returned false, stops ajax request
                           return that.trigger('ajax:beforesend',[{p1: '1'},{p2: '2'}]);

                        },
                        success: function(){
                            that.trigger('ajax:success');
                        },
                        error: function(){
                        }
                    });

                    return false;
                });

                $('#link1').bind('ajax:beforesend',function(e,data,data2){
                    alert("success"+data2.p2);
                    return false;
                });

                $('#link1').bind('ajax:success',function(e){
                    alert("success");

                });
            });
        </script>
    </head>

    <body>
        <a id="link1">link1</a>

        <div id="box" style="width:500px;height:150px;background-color: gray;margin-top: 50px;">
            result
        </div>
    </body>

</html>

我的问题是:在beforesend函数中,如果触发的自定义事件的结果为false但是不起作用,我想中止ajax请求, 我错过了什么?

编辑:请不要专注于beforesend功能。我真正想要的是如何将自定义事件结果(例如true或false)返回到调用事件的位置(在本例中为send函数之前)。正如我所说,这只是样板代码。不是真实世界的项目。

1 个答案:

答案 0 :(得分:0)

beforeSend是一个Ajax事件。在beforeSend函数中返回false将取消请求。从jQuery 1.5开始,无论请求的类型如何,都将调用beforeSend选项。

请在此处查看beforesend ajax事件处理程序并尝试http://api.jquery.com/jQuery.ajax/

最有可能的问题在于beforesend功能。