我正在編寫一個小工具,它可以使我的工作更容易。但是,當我運行代碼時,出現錯誤Uncaught SyntaxError: Unexpected token = (erik.core.js:5)
和Uncaught ReferenceError: erik is not defined (test.html:14( (anonymous function)
。JavaScript:未捕獲的引用錯誤:未定義erik
這是我的HTML代碼:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ErikJs Unit Testing</title>
<script src="erik.core.js"></script>
...
</head>
<body>
...
<canvas id="myCanvas" width="500" height="400"></canvas>
<script>
var ctx = erik.initCanvas("#myCanvas");
ctx.beginPath();
ctx.moveTo(100, 200);
ctx.lineTo(200, 300);
ctx.stroke();
</script>
</body>
</html>
和JavaScript(erik.core.js):
我建議你youtube.com/watch?v=c66pvfilotA –
'我建議你youtube.com/watch?V = c66pvfilotA' 你建議我什麼? –