我有一个下面的脚本,它在我的 Windows 浏览器中工作。但此代码在 Epub 电子书中不起作用(在我的 iPad iBooks 中)
<canvas id="e" width="177" height="113"></canvas>
<script>
var canvas = document.getElementById("e");
var context = canvas.getContext("2d");
var myImg = new Image();
myImg.src = "../Images/box.jpg";
myImg.onload = function() {
context.drawImage(myImg, 0, 0);
};
</script>