日期:2014-05-16  浏览次数:20344 次

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"); });
    }
});