摘要: var ctn = document.getElementById('img');var imgO = new Image();imgO.onload = function(){ if(imgO.width>400){ this.width = 400; //在这里也可设置高度 } //图片下载完毕了,高宽设好了,再添加到dom结构中去 ctn.appendChild(imgO);}imgO.src = url; 阅读全文
posted @ 2011-12-15 09:18 最真的梦2010 阅读(2202) 评论(10) 推荐(2) 编辑