2

我有两个函数可以计算和调整屏幕上元素的高度和宽度。

panelHeight将目标元素的高度设置为可用的屏幕高度,而panelWidth调整元素的宽度。

我的问题:
我无法确保在第一个函数( panelHeight )完成后触发第二个函数( panelWidth ) 。如果目标元素很长并且有滚动条,它会被panelHeight移除,但如果在panelWidth触发之前没有这样做,设置的宽度将被滚动条占用的空间关闭(17px - 当宽度为计算)。

因此,我正在寻找一种仅在完成另一个功能后才触发功能的方法。有点像回调,但我不确定谁在下面的 for 循环中摆弄这个:

panelHeight: function (from) {
    var self = this,
        o = self.options,
        wrap = $('div:jqmData(wrapper="true").ui-page-active').last(),
        overthrow = wrap.jqmData("scrollmode") == "overthrow" && $('html').hasClass('ui-splitview-mode'),
        blacklist = $('html').hasClass('blacklist'),

        // calculationg toolbars
        // elements
        contents = TARGET_ELEMENT;

    if (overthrow) {
        for ( var i = 0; i < contents.length; i++){
            // calculate values 
            ...
            contents.eq(i).css({    
                        "max-height": setH, 
                        "margin-top": blacklist == true ? glbH + lclH : 0, 
                        "margin-bottom": blacklist == true ? glbF + lclF  : 0
                    })
            }

        } else {

            for ( var i = 0; i < contents.length; i++){
                // calculate values
                ...
                contents.eq(i).css({    
                            "max-height" : "", 
                            "height": o._iPadFixHeight, 
                            "margin-top": blacklist == true ? 
                                parseFloat( lclH.outerHeight() ) : 0, 
                            "margin-bottom": blacklist == true ? 
                                parseFloat( lclF.outerHeight() ) : 0
                        })
                }

            }   
            // USING THIS NOW, WHICH IS NOT NICE                
    window.setTimeout(function(){ self.panelWidth(false ); },65)
    },

所以我要么循环通过 overthrow-if-or-else 循环,只需要触发panelWidth * AFTER * 循环完成。

问题:
知道如何摆脱超时并将panelWidth函数调用添加到循环的末尾吗?我尝试使用queue,但这也需要delay(xxx)。我也不能在 for 循环内触发 panelWidth 。我只需要在高度功能完成后触发一次

编辑
这可能吗:

// calling my panelHeight function like this: 
self.panelHeight("source").done(function() {
   // call panelWidth:
   self.panelWidth();
   });

如果是这样,我必须把var deferred = Deferred(); ?

解决方案
让它工作。谢谢大家!这是我的解决方案:

调用 panelHeight 时,添加 done() 处理程序

$(document).on('pagechange.fixedHeight', function() {
    self.panelHeight("pagechange").done( function() {
        self.panelWidth( false ) 
        });
    });

panelHeight中,声明 defer 并返回 resolved();

panelHeight: function (from) {  
    var deferred = $.Deferred();

    ... run function

    return deferred.resolve();
    }
4

1 回答 1

6

这就是 JQuery Deferred的目的......

var deferred = $.Deferred();

somethingAsync(function() {
    // callback stuff here

    // now tell the deferred task it's ok to proceed
    deferred.resolve();
}

deferred.done(function() {
    // your finalize code here
});

编辑 由于resolve事件需要与 dom 调整大小相关联,因此 Javascript resize事件处理程序可能会起作用。

于 2012-06-15T07:37:43.823 回答