0
以下のjqueryに相当するネイティブのjavascriptは何でしょうか?jQuery .attr(...)。load()に相当するネイティブJavaScript。
("<img/>").attr("src", "data:image/gif;base64," + base64).load(function() {
context.scale(width/this.width, height/this.height);
context.drawImage(this, 0, 0);
deferred.resolve($("<img/>").attr("src", canvas.toDataURL()));
});
[loadEvent(https://developer.mozilla.org/en-US/docs/Web/Events/load)および[のsetAttribute(HTTPS: //developer.mozilla.org/en/docs/Web/API/Element/setAttribute) – George