📅  最后修改于: 2022-03-11 15:02:38.695000             🧑  作者: Mango
function draw() {
var ctx = document.getElementById('canvas').getContext('2d');
ctx.font = '48px serif';
ctx.fillText('Hello world', 10, 50);
}