如何通过getColor函数返回onload事件函数的返回值呢?
console.log(getColor(URL));function getColor (URL) { const image = new Image() image.onload = function(){ return {color: 'red'} } image.src = URL }
求助,谢谢!!
相关分类