0

我在#anotherdiv 中有链接

但是根据设计 #anotherdiv 在取消选择 #thediv 时会隐藏。

当我单击链接时,如何在隐藏父 div 之前触发它?

谢谢!

$('#thediv').livequery("blur", function(e){
             $('#anotherdiv').hide();
});
4

1 回答 1

0

您可能会尝试延迟hide()一点:

$('#thediv').livequery("blur", function(e){
    setTimeout(function() { $('#anotherdiv').hide() }, 50);
});
于 2012-05-30T11:29:07.907 回答