1

我不断收到这样的错误:

$("div.valid_box").html(data.message).css("margin-left", "145px").css("width", "520px").show().delay is not a function
[Break On This Error] $(...elay(10000).hide("slow", function() { 

在我的代码中:

success: function(data) {
    if (data.errorsExist) {
        $('div.valid_box').hide();
        $("div.error_box").html(data.message).css("margin-left", "145px").css("width", "520px").show(); 
    } else {
        $('div.error_box').hide();
        $("div.valid_box").html(data.message).css("margin-left", "145px").css("width", "520px").show().delay(10000).hide("slow", function() {
            window.location.href = "index.php";
        });    
    } 
}
4

1 回答 1

1

你可能在某个地方加载了旧版本的 jQuery,它覆盖了新版本。搜索这个错误并删除加载旧的 jQuery。

于 2011-06-11T06:32:07.370 回答