所以我想尝试包括' Flop'进入html文件类,有app.js内容:
class Flop {
size;
difficulty;
constructor() {
console.log("Created");
}
start() {
var canvas = document.getElementById("flop");
var content = canvas.getContent("2d");
}
setup() {
}
}
还有index.html文件:
<html>
<head>
<title>Flop</title>
<meta charset="UTF-8" />
</head>
<body>
<canvas id="flop"></canvas>
<script src="main/app.js"></script>
<script>
var flop = new Flop();
</script>
</body>
</html>
以及我在没有定义Flop的控制台中得到的,问题是如果我真的想要使用这个类该怎么做以及我应该如何包含它