1

有没有办法确定 jquery 中的 .load 函数是否加载了某些东西?我正在尝试将页面加载到模式对话框中。当验证失败时,它什么也不加载。在这种情况下,我想关闭覆盖。

4

1 回答 1

4

是的(来自jQuery doc):

$("#success").load("/not-here.php", function(response, status, xhr) {
  if (status == "error") {
    var msg = "Sorry but there was an error: ";
    $("#error").html(msg + xhr.status + " " + xhr.statusText);
  }
});
于 2012-11-20T19:12:45.457 回答