jQuery Dialog奇怪的错误

时间:2012-10-16 20:30:08

标签: javascript jquery jquery-ui oop

这是迄今为止我遇到的最令人烦恼和奇怪的问题。这是荒谬的基本(墨菲法律错误之一)

我有一个div(divDialog):

    <div id="divDialog">
    </div>

我调用对话框函数:

    $('#divDialog').dialog();

它在firebug中给了我这个错误:

    this.element[0].nodetitle is undefined

如果删除div,则错误消失。如果我只控制选择器部分, 它显示了firebug中的节点,一切看起来都很好。我目前正在通过以下方式扩展jquery:

$.fn.isAfter = function(sel){ //returns true if element is after, else return false, for animations
    return this.prevAll(sel).length > 0;
}
$.fn.isBefore= function(sel){ //returns true if element is before, else return false, for animations
    return this.nextAll(sel).length > 0;
}
$.fn.exists = function(){ //returns true if element exists, false if not
    return this.length>0;
}
$.fn.btnClick = function(fn){ //check if the element is disabled before executing onclick
    $(this).click(function(){
        if($(this).attr('disabled')!='disabled'){
            fn(this);
        }
    });
    return $(this);
}
$.fn.btnToggle = function(){ //toggle disable/enable
    if($(this).attr('disabled')=='disabled'){
        $(this).removeAttr('disabled');
    }
    else{
        $(this).attr('disabled','disabled');
    }
    return $(this);
}

我也在扩展Array原型:

    Array.prototype.isArray = true; //this allows us to say if(variable.isArray) to detect arrays

有什么想法吗?我对此感到非常沮丧。任何帮助或指示都将非常感激。

1 个答案:

答案 0 :(得分:1)

问题显然是jQuery,jQuery UI或它们配对的版本问题。我使用的是jQuery 1.7.1和jQuery UI 1.8.1。从谷歌使用AJAX库后,问题就消失了。 Nodetitle只出现在UI lib中,所以我假设那里的大谎言。对于任何jQuery开发者,我建议在UI和vanilla之间进行某种包控制。也许UI可以通过使用AJAX调用移植到浏览器中,以便UI始终与正确的vanilla包匹配?无论如何,已经解决了。