function changeimg(e,obj,width,height) { e.preventdefault(); // if ( obj.width > width || obj.height > height ) { // var scale; // var scale1 = obj.width / width; // var scale2 = obj.height / height; // if(scale1 > scale2){ // scale = scale1; // }else{ // scale = scale2; // } // obj.height = obj.height / scale; // } var src = obj.src; // console.log(src) $('.jingpin_img_box').append('').show().find('img').animate({ width: '600px'}, 500, function() { /* stuff to do after animation is complete */ });; } function jingpin_img_box(e,obj){ console.log('111') var target = e.target; if($(target).is('.jingpin_img_box')){ $(obj).hide().find('img').remove(); } } function jingpin_img_close(){ console.log('222') var $elem = $('.jingpin_img_box'); $elem.hide().find('img').remove(); }