0

如果鼠标在 div 的子元素内部单击,我有一个隐藏 div 的代码。但是,它只有在我点击外部时才有效。使用 jquery 1.8 可以正常工作,但我需要使用 1.3.2 我需要打开该元素,即使在内部单击鼠标或此元素或其任何子元素也是如此。

$(document).click(function (e) {


if (e.target.id != 'info' && !$('#info').find(e.target).length) {
    $("#info").hide();
}
});

http://jsfiddle.net/QStkd/640/

1.3.2 http://jsfiddle.net/J9Js5/

你能帮我写代码吗?谢谢

4

1 回答 1

1

这种方法适用于 1.3:

http://jsfiddle.net/Gs46u/

$(document).click(function (e) {
    $("#info").hide();
});

$('#info').click(function(e) {
    e.stopPropagation();
});

这也有效:

http://jsfiddle.net/8Wuxm/

$(document).click(function (e) {
    if (!$(e.target).closest('#info').length)
        $('#info').hide();
});
于 2013-11-08T19:37:57.780 回答