충분한 수면을 취하지 않았습니까? 이 다음 코드
var frame=document.getElementById("viewer");
frame.width=100;
frame.height=100;
var ctx=frame.getContext("2d");
var img=new Image();
img.src="http://www.ansearch.com/images/interface/item/small/image.png"
img.onload=function() {
// draw image
ctx.drawImage(img, 0, 0)
// Here's where the error happens:
window.open(frame.toDataURL("image/png"));
}
이 오류가 발생합니다.
SECURITY_ERR: DOM Exception 18
이것이 작동하지 않을 방법이 없습니다! 누구든지 이것을 설명 할 수 있습니까?