通过索引(数组)创建新的jQuery对象

时间:2018-07-03 07:51:42

标签: javascript jquery

我有一个数组$myElements,其中包含一些带in的元素。在控制台中显示它们时,它看起来像这样:

enter image description here

现在,我正在尝试为jQuery中带有object的元素创建新的index 1 $myElements,并且比起我想使用animate()为它制作动画。

我以两种方式尝试过:

const currentElement = $(this.$myElements[1]);

const currentElement = $(`.${this.$myElements[1].className}`);

比我尝试这样的示例动画:

currentElement.animate({
    transform: 'scale(1.75)'
}, 1000);

我的动画不起作用。我不确定我尝试创建新jQuery对象的方式是否错误或动画?

0 个答案:

没有答案