问题描述
- DREAMWEAVER中画的圆不显示
-
<!doctype html>绘制圆形
var canvas=document.getElementById('yuan');
var ctx=canvas.getContext('2d');
ctx.beginPath();
ctx.arc(150,150,75,0,2*Math.PI,flase);
ctx.closePath();
ctx.fillStyle='#EA6179';
ctx.fill();
解决方案
false写错了,写成flase了
请点下我回答右边的采纳,谢谢
时间: 2024-11-10 00:25:29