javascript的VSCode智能感知不适用于Canvas元素

时间:2020-09-19 16:19:16

标签: javascript canvas

VScode intellisense在HTML 5'canvas'元素上是否存在问题。 Intellisense不提供自动完成支持

var canvas = document.getElementById("canvas")
canvas.getC... /*there is no .getContext("2d")*/

enter image description here

1 个答案:

答案 0 :(得分:0)

使用 JSDoc @type 获取 canvas 元素:

/** @type {HTMLCanvasElement} */
const c = document.getElementById('canvas');

查看更多:Get IntelliSense in VS Code for HTML Canvas 内森·沃恩 (Nathan Vaughn)