VScode intellisense在HTML 5'canvas'元素上是否存在问题。 Intellisense不提供自动完成支持
var canvas = document.getElementById("canvas")
canvas.getC... /*there is no .getContext("2d")*/
答案 0 :(得分:0)
使用 JSDoc @type
获取 canvas
元素:
/** @type {HTMLCanvasElement} */
const c = document.getElementById('canvas');
查看更多:Get IntelliSense in VS Code for HTML Canvas 内森·沃恩 (Nathan Vaughn)