如何在javascript中按顺序激活3个不同的功能?

时间:2013-05-10 13:58:12

标签: javascript jquery html

我已经尝试了一段时间了,但是我无法让它发挥作用。 我的问题:我有3个功能(1个使div变小,1个更新div,1个放大div),这些功能由鼠标点击激活。但是它们同时激活,意味着第1个(使div更小)由于第2个(更新div)而被跳过。 第二个函数调用php函数重新加载div中的数据。 以下是3个功能:

function reduceView(Parent){
    $(Parent).find('#details').hide("slow", function(){
        // Animation complete.
    });
    // get width and Extend
    $(Parent).find("#" + Parent.ID + "").width("250px");
    var width = $(Parent).find("#" + Parent.ID + "").css("width");
    $(Parent).animate({
        width: width
    }, 500, function(){
        // Animation complete.
    });
}

function renewWindow(Parent){
    $(":animated").promise().done(function(){
        PHP.execute(Parent.id + "/home");
        $(Parent).find("div[class='Item-list']").remove();
        $(Parent).find("div[id='details']").remove();
        $(Parent).find("div[id='confirmDialog']").remove();
        $(Parent).append(PHP.response);
        initJquery();
        initEvents();
    });
}

function enlargeView(Parent){
    $(Parent).promise().done(function(){
        $(Parent).find('#details').show("slow", function(){
            // Animation complete.
        });
        // get width and Extend
        $(Parent).find("#" + Parent.ID + "").width("683px");
        var width = $(Parent).find("#" + Parent.ID + "").css("width");
        $(Parent).animate({
            width: width
        }, 500, function(){
            // Animation complete.
        });
    });
}

任何线索如何让这3个按顺序工作? 'initJquery'和'initEvents'看到.click等被重新初始化的事实。 在此先感谢!!

聚苯乙烯。如果我错过了您可能需要的任何信息,请不要犹豫!!

编辑:下面是调用函数的代码

$(".selecter").click(function() {
    var Element = this;
    var ID = Element.id;
    var Parent = $(Element).closest(".drag-div")[0];
    reduceView(Parent);
    renewWindow(Parent);

    $(":animated").promise().done(function(){
        PHP.execute(Parent.id + "/details?" + Parent.id + "id="+ID);
        $(Parent).find('#details').html(PHP.response);
        enlargeView(Parent);
        initJquery();
    });
    $(Element).addClass("selected");
});

1 个答案:

答案 0 :(得分:0)

看起来你正在应用多个动画,然后使用$(“:animated”)选择器获得你想要的动画的承诺。你的答案中没有足够的代码来运行它,但我的猜测是,updateWindow中的闭包是由错误的promise对象触发的 - 可能是页面上与此功能无关的一个。

尝试从第一个函数返回要关键的promise对象,如下所示:

function reduceView(Parent){
    var promise = $(Parent).find('#details').hide("slow", function(){
        // Animation complete.
    }).promise();
    // get width and Extend
    $(Parent).find("#" + Parent.ID + "").width("250px");
    var width = $(Parent).find("#" + Parent.ID + "").css("width");
    $(Parent).animate({
        width: width
    }, 500, function(){
        // Animation complete.
    });
    return promise;
}

然后,renewWindow可以消耗这个承诺:

function renewWindow(Parent, promise){
    promise.done(function(){
        PHP.execute(Parent.id + "/home");
        $(Parent).find("div[class='Item-list']").remove();
        $(Parent).find("div[id='details']").remove();
        $(Parent).find("div[id='confirmDialog']").remove();
        $(Parent).append(PHP.response);
        initJquery();
        initEvents();
    });
}

通过这种方式,您知道您触发功能的承诺是您用来隐藏div的承诺。