1 $(document).bind("click",function(e){ 2 var target = $(e.target); 3 if(target.closest("#parentId").length == 0){//点击id为parentId之外的地方触发 4 layer.close(tip_index); 5 type=0; 6 } 7 })
1 $(document).bind("click",function(e){ 2 var target = $(e.target); 3 if(target.closest("#parentId").length == 0){//点击id为parentId之外的地方触发 4 layer.close(tip_index); 5 type=0; 6 } 7 })