<script type="text/javascript"> $(function(){ $(".tempWrap ul li img").click(function() { var img_src = $(this).attr('src'); var body_height = $('body').outerHeight(); $('#show_img').attr('src',img_src) ; var img_h = $('#show_img').height(); var img_w = $('#show_img').width(); var mg_left = -img_w/2; var mg_top = -img_h/2; $('#show_img').css({'margin-top':mg_top,'margin-left':mg_left,'display':'block'}); $('#img_bg').css('height',body_height).show(); return false; }); $('#show_img,#img_bg').click(function() { $('#show_img,#img_bg').hide(); }); }) </script> <img src="" style='z-index:1002;position:fixed; top:50%;left:50%; display:none' id="show_img"/> <div id='img_bg' style="width:100%; height:100%; opacity:0.6; background:#000000; z-index:1001; position:absolute;top:0;left:0;right:0; display:none"></div>