当前位置: 代码迷 >> JavaScript >> JS统制图片大小
  详细解决方案

JS统制图片大小

热度:105   发布时间:2012-10-13 11:38:17.0
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"); });
    }
});
  相关解决方案