问答详情
源自:2-2 绘制直线、多边形和七巧板

为什么在谷歌和火狐里都只有个边框?代码明明和老师的一样啊,工具用的sublime3

<!DOCTYPE html>

<meta charset="utf-8">

<html>

<head>

<title>canvas</title>

<script>

window.onload=function(){

var canvas = document.getElementById("canvas");

canvas.width = 1024;

canvas.height = 768;

var ctx = convas.getContext("2d");

ctx.moveTo(100,100);

ctx.lineTo(700,700);

ctx.stroke();

}

</script>

</head>

<body>

<canvas id="canvas" style="border:2px solid red;"></canvas>

</body>

</html>


提问者:qq_莫念默念_0 2017-03-20 21:01

个回答

  • qq_莫念默念_0
    2017-03-20 21:03:54

    是我自己写错了。。