本文介绍了点击图层以外的任何地方时隐藏图层的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
点击(功能(){//隐藏图层代码
});
这会隐藏图层。
但我不希望图层在图层内部/图层上被隐藏。
请帮助。
解决方案
获取id到图层。例如:#layer
并将此代码放到您的脚本文件中:
<$ c $('#layer')。on('click',function(event){
event.stopPropagation();
});
$('body').click(function() {
//hide layer code here
});
This will hide the layer.
But I don't want the layer to be hidden when I click inside/on the layer.
Please help.
解决方案
get the id to layer. for example: #layer
and put this code to your script file:
$('#layer').on('click', function (event) {
event.stopPropagation();
});
这篇关于点击图层以外的任何地方时隐藏图层的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!