我在脚本中有一个在画布上绘制矩形的函数。我想清理在“if”条件下绘制的矩形。我在画布上也有文字(它的坐标是 0,80),它不应该被清理。只有矩形必须清洁。
function red_stroke_2(yy)
{
//Red color edges
context.strokeStyle = "#f00";
context.strokeRect(0,yy,800,40);
}
if (Option1==answers[qnumber])
{
red_stroke_2(80);
}