jquery点击目标DIV以外关闭效果】的更多相关文章

$(function(){ $(".cover").hide(); $("#call").click(function(){ console.log("弹出"); $(".cover").fadeIn(300,"swing"); event.stopPropagation(); //阻止冒泡触发$(document).click() }) $(".left-btn,.right-btn"…
效果如图: 放大前: 放大后(可拖动图片浏览): 源码如下: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>jQuery点击图片拖动放大查看效果</title> <script…
今天开发新项目的时候,有个需求,点击一个div 展示出个弹出窗 弹出窗标题的颜色要跟点击的div图标颜色一致, 所以这就需要我遍历一下多个数据, 然后需要点击弹出div的外部其他区域,隐藏这个div.所以 有了以下操作! 这个点击事件@click.stop="isPop(item.event)" 加上.stop  起阻止冒泡的效果,这里很重要,具体原因就暂时不解释了 .做的时候就会理解了: 目标div 是被 item.popShow 控制的,我给出我数组的格式 fiveList: […
点击非div区域隐藏div,如图,点击圆的头像(.person-msg)弹出白色底框(.person-centre).点击圆头像以外的区域隐藏白色底框…
HTML部分:<div id="append_parent"></div> JS代码部分: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 //内容页图片点击放大效果     var imgBoxMod=$(".ctnlist .text i…
转载自:http://blog.163.com/abkiss@126/blog/static/325941002012111754349590/ 主要功能是点击显示,然后通过点击页面的任意位置都能关闭显示效果,主要是$(document).click的作用 开发过程中经常有一些弹出层,弹出后要在点击页面其他地方时自动关闭,下面是实现代码:HTML代码: <div class="down">click</div><div class="con hi…
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-…
$(document).bind("click",function(e){            if($( e.target ).closest(".game-container").length == 0){                alert(111);                $(".game-container").hide();//game-container是弹框的样式名称            }else{      …
jquery制作弹出层带遮罩效果,点击阴影部分层消失. 整体还是比较简单的. HTML代码很简单 <a href="#" class="big-link" data-reveal-id="myModal" data-animation="fade">jquery点我弹出</a> <div id="myModal" class="reveal-modal"&g…
20140110更新: <!doctype html> <html> <head> <meta charset="UTF-8"> <title>提示插件</title> <style> body {margin:;padding:;font:12px/18px arial;color:#;} </style> <script src="http://code.jquery.c…