作为程序员一定要保持良好的睡眠,才能好编程

js控制图片的大小

发布时间:2016-01-21

              最近在搞一个信息网站,文章内容中可以显示图片,所以就需要限制用户贴进去的图片的显示大小了。

在网上找到一段代码:


    $("#viewnews_body img").each(function(){
        var width = 620;
        var height = 600;
        var image = $(this);
        if (image.width() > image.height()){
            if(image.width()>width){
                image.width(width);
                image.height(width/image.width()*image.height());
            }
        }else{
            if(image.height()>height){
                image.height(height);
                image.width(height/image.height()*image.width());
            }
        }
    });


});