Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#anotherdiv 内にリンクがあります
ただし、設計上、#thediv の選択を解除すると、#anotherdiv は非表示になります。
リンクをクリックすると、親 div が非表示になる前にリンクをトリガーするにはどうすればよいですか?
ありがとう!
$('#thediv').livequery("blur", function(e){ $('#anotherdiv').hide(); });
少し遅らせてみてくださいhide():
hide()
$('#thediv').livequery("blur", function(e){ setTimeout(function() { $('#anotherdiv').hide() }, 50); });