Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

code:

<img src="image1.jpg" alt="This is 1 test.">

<img src="image2.jpg" alt="This is 2 test">

jquery code:

 alert($('img')[0].attr('alt'));

why there is not pop up a box, and shows This is 1 test.

share|improve this question

4 Answers

up vote 6 down vote accepted

To directly answer your question:

It doesn't work because [0] returns a native DOM Element of the selector, which doesn't have a method called .attr(). You need to use .eq(index), which basically extracts out the index'th element of the elements represented by $(). Note that $() returns an array-like object and not an array per-se (thus [0] doesn't work out of the box)

share|improve this answer
1  
There's no such thing as a DOMElement. (Did you mean: DOM element?) – rynah May 16 '12 at 2:18
all along I thought it has one :s, thanks @minitech for the new knowledge :) – SiGanteng May 16 '12 at 2:19
is there a way to know $() returns an array-like object and not an array. thank you. – run May 16 '12 at 3:12

You probably want to use eq for this:

 alert($('img').eq(0).attr('alt'));
share|improve this answer

$("img")[0] returns the raw DOM element. You want the jQuery object that wraps the DOM element.

use $("img").eq(0) to get the jQuery object.

share|improve this answer

$('img')[0] returns HTMLElement Object, not jquery Object, so it doesn't have the method .attr. If you want to use it, you should do $('img')[0].getAttribute('alt').

Or you still want the jquery object, You could use $('img').first().attr('alt').

share|improve this answer
thank you. how do i know which element returns HTMLElement Object or jquery Object, – run May 16 '12 at 3:07
You could use the debug console to check it. – xdazz May 16 '12 at 4:28
how to use the debug console, could you give more detail of it.many thanks – run May 16 '12 at 5:31
If you use firefox, then it is firebug. Or Chrome then it is Chrome debug tools, Even IE has debug tools. – xdazz May 16 '12 at 6:37
1  
console.log($('img')[0]); then watch the console. – xdazz May 16 '12 at 8:39
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.