最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - addClass to element inside an array - Stack Overflow

programmeradmin1浏览0评论

can you help me understand why this is not working?

var elementTab1 = $('#tab1 .item-media.modificato');
elementTab1[0].addClass('selezionato');

this through this error

TypeError: undefined is not a function (evaluating 'elementTab1[0].addClass('selezionato')')

Thanks

can you help me understand why this is not working?

var elementTab1 = $('#tab1 .item-media.modificato');
elementTab1[0].addClass('selezionato');

this through this error

TypeError: undefined is not a function (evaluating 'elementTab1[0].addClass('selezionato')')

Thanks

Share edited Dec 23, 2014 at 22:10 elledienne asked Dec 23, 2014 at 22:03 elledienneelledienne 1,1851 gold badge11 silver badges18 bronze badges 2
  • You probably don't want that . before the class name. – Pointy Commented Dec 23, 2014 at 22:08
  • Yes, just a typo error writing the question, edited, thanks:) – elledienne Commented Dec 23, 2014 at 22:08
Add a ment  | 

2 Answers 2

Reset to default 7

elementTab1 is already a jQuery object. It contains an array of matched elements in the DOM. Accessing the first index using [0] will return a native element with access to the native JavaScript API (and not jQuery's).

jQuery does provide a nice way to grab items from the array though. It is .eq().

elementTab1.eq(0).addClass('selezionato');

Accessing an element of a JQuery object (via your elementTab1[0]) call returns the DOM element, not a JQuery element.

DOM elements do not have an .addClass method.

The following code should work for you:

$(elementTab1[0]).addClass(".selezionato");

Alternately, just skip JQuery and use the native DOM APIs:

document
   .querySelector("#tab1 .item-media.modificato")
   .classList
   .add(".selezionato");
发布评论

评论列表(0)

  1. 暂无评论