0

可能重复:
单击页面上除图层以外的任何位置时隐藏图层

我有一层说代码是:

<div id=id1">

<div id="id2">

textssssss colorrrrrrrr and other stuff

</div>

textssssss colorrrrrrrr and other stuff

</div>

当我点击图层时我想要它继续可见,如果我点击 body 的任何其他部分,图层应该关闭。

请帮忙 ?

4

1 回答 1

0

尝试这个:

$('#id1').on('click', function (e) {
    e.stopPropagation();
    $(this).find('#id2').hide();
});
于 2012-10-10T18:12:01.887 回答