经常会碰到用户通过编辑器上传内容中的图片过宽导致页面变形的问题,现就这一问题分享一下本人的解决办法,具体办法如下:
$('#ac_content img').each(function(){ appropriate_width=300; if($(this).width()>appropriate_width){ $(this).css({'width':appropriate_width+'px','height':$(this).height()*appropriate_width/$(this).width()+'px'}); $(this).attr('title','点击查看大图片'); $(this).bind({ click:function(){ window.open($(this).attr('src')); } }); } });