//限制图片过大 var ywidth = 580; $(".theme-content img,.post-content img").each(function(){ if($(this).width() > ywidth) { $(this).width(ywidth); $(this).mouseover(function(){ $(this).css("cursor","pointer"); }); $(this).click(function(){ window.location.href = $(this).attr("src"); }); } });
详细解决方案
JS统制图片大小
热度:105 发布时间:2012-10-13 11:38:17.0
相关解决方案