使用 jQuery 选择器初始化 Raphael 对象
在 Raphael 文档中,我们用以下内容初始化 Raphael:
var paper = Raphael(document.getElementById("notepad"), 320, 200);
我想用 jQuery 选择我的类并将其转换为 Raphael,所以我的想法是:
var paper = Raphael($(".myClass"), 320, 200);
但我在 Raphael.js 中得到 TypeError: b is undefined
。有谁知道该怎么做?
In Raphael docs, we init Raphael with:
var paper = Raphael(document.getElementById("notepad"), 320, 200);
I want to select my class with jQuery and turn it to Raphael, so my thought is:
var paper = Raphael($(".myClass"), 320, 200);
But I get TypeError: b is undefined
in Raphael.js. Does anyone know how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
$
函数返回 HTML 元素的数组类型对象,因此使用[0]
获取第一个。Try:
The
$
function returns an array-type object of HTML elements, so use[0]
to get the first.