Tôi đã không ngủ đủ giấc hay sao? Mã sau đây
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"));
}
đang mắc lỗi này:
SECURITY_ERR: DOM Exception 18
Không có cách nào mà điều này không hoạt động! Bất cứ ai có thể giải thích điều này, xin vui lòng?