吴伟贤のBlog

Feed Rss

js 图片超出范围就自动缩小的代码

05.30.2010, js, by .

<img   src= "… "   onload= "autoresize(this) ">
function   autoresize(obj){
    if(obj.width> 800)
        obj.width=800;
}

评论已关闭。