标签:
var img=document.getElementById(‘img‘); function add(isrc){ var imgn=new Image(); imgn.src=isrc; imgn.onload=function(){ img.src=this.src; img.style.width=50+‘px‘; img.style.height=50+‘px‘; } } add(‘1.png‘); add(‘5.png);
标签:
原文地址:http://www.cnblogs.com/mk2016/p/5507690.html