使用 jQuery 选择器初始化 Raphael 对象

发布于 2024-10-11 06:01:22 字数 330 浏览 2 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

死开点丶别碍眼 2024-10-18 06:01:22

尝试:

var paper = Raphael($(".myClass")[0], 320, 200);

$ 函数返回 HTML 元素的数组类型对象,因此使用 [0] 获取第一个。

Try:

var paper = Raphael($(".myClass")[0], 320, 200);

The $ function returns an array-type object of HTML elements, so use [0] to get the first.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文