我试图修复图像上的弹出框点击我试图做类似的事情,如果我点击图像,如果我再次点击它隐藏的图像,弹出框会显示,但如果我点击图像,我想要更多的东西并且popover应该隐藏任何帮助,谢谢。
$("#popup-img").click(function () {
if ($(".popup").is(":hidden")) {
$(".popup").slideDown("fast");
} else {
$(".popup").slideUp("fast");
}
if ($(".popup").is(":visible")) {
// i thin here code should be if i click out of the popover
// it should be hide again
}
});