JS控制图片大小
//限制图片过大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"); }); }});