0
HTML:
<iframe id="frame" scrolling="no"></iframe>
JS:
frame.contentWindow.document.write('scroll</br><div style="width:100px;height:100px;"><canvas id="cv"></canvas></div>');
var cv = frame.contentWindow.document.body.childNodes[2].childNodes[0];
var context = cv.getContext("2d");
cv.height = cv.width = 500;
context.fillStyle = "red";
context.rect(0, 0, 500, 500);
context.fill();
爲什麼沒有在Android 4.2這一工作(也許在其他人) ?爲什麼滾動iframe時滾動=「no」? 沒有畫布,完美的作品。