html5 canvas 清除可以使用clearRect() 方法
clearRect() 方法的作用是清空給定矩形內的指定像素。
JavaScript 語法:
context.clearRect(x,y,width,height);
x 要清除的矩形左上角的 x 坐標
y 要清除的矩形左上角的 y 坐標
width 要清除的矩形的寬度,以像素計
height 要清除的矩形的高度,以像素計
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas_keleyi_com" width="300" height="150" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.
</canvas>
<script>
var c=document.getElementById("myCanvas_ke"+"leyi_com");
var ctx=c.getContext("2d");
ctx.fillStyle="red";
ctx.fillRect(0,0,300,150);
ctx.clearRect(20,20,100,50);
</script>
</body>
</html>