码迷,mamicode.com
首页 > 其他好文 > 详细

$(document) 和 $(e.target)实现div的显示和隐藏

时间:2015-01-08 16:52:29      阅读:556      评论:0      收藏:0      [点我收藏+]

标签:

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

    if($(e.target).hasClass("zm_view")){
        $(".question").hide();
        $(e.target).parent().parent().next().show();
}

});

 

$(document) 是当前文档,就是你看到的整个网页

$(window) 如果没有框架则就是你浏览的当前浏览器的窗口

$(document) 和 $(e.target)实现div的显示和隐藏

标签:

原文地址:http://www.cnblogs.com/cornucopia/p/4210931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!