日期:2014-05-16 浏览次数:20367 次
//限制图片过大 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"); }); } });