index.html 文件如下: 这个 HTML 是用 Handlebars 编译的
<div id="svg"></div>
index.js 文件如下:
var s = Snap("#svg");
var bigCircle = s.circle(150, 150, 100);
当我执行我的代码时。它向我显示以下错误:
TypeError: s.circle is not a function
index.html 文件如下: 这个 HTML 是用 Handlebars 编译的
<div id="svg"></div>
index.js 文件如下:
var s = Snap("#svg");
var bigCircle = s.circle(150, 150, 100);
当我执行我的代码时。它向我显示以下错误:
TypeError: s.circle is not a function