gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 22:21:39 25 4
gpt4 key购买 nike

在 Raphael 文档中,我们使用以下命令初始化 Raphael:

var paper = Raphael(document.getElementById("notepad"), 320, 200);

我想用 jQuery 选择我的类并将其转向 Raphael,所以我的想法是:

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

但是我在 Raphael.js 中收到 TypeError: b is undefined 。有谁知道该怎么做吗?

最佳答案

尝试:

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

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

关于jquery - 使用 jQuery 选择器初始化 Raphael 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4622216/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com