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

JqueryJavascript div selection via .each() gives HTMLDivElement object rather than Object object. What can be the workaround to

programmeradmin1浏览0评论

I have 5 div elements with attribute data-role="content"

I select all of them by

a = $('div[data-role=content]')

It returns [object HTMLDivElement].

To hide all the div elements, I iterate through a and hide each element

<script>
$.each(a, function(index, value) {
    if (value) {
        alert(typeof(value));
        value.hide();
    }
})
</script>​

But it returns an error ....

TypeError: Result of expression 'a.hide' [undefined] is not a function

On the other hand, if I select a single div with the id:

a = $('div[id=content1]')

it gives me an:

 [object Object]

The hide function a.hide() works in that case.

The question is: "How can I select all the [object Object] elements at once?" or, "How can I convert [object HTMLDivElement] to [object Object]?"

I have 5 div elements with attribute data-role="content"

I select all of them by

a = $('div[data-role=content]')

It returns [object HTMLDivElement].

To hide all the div elements, I iterate through a and hide each element

<script>
$.each(a, function(index, value) {
    if (value) {
        alert(typeof(value));
        value.hide();
    }
})
</script>​

But it returns an error ....

TypeError: Result of expression 'a.hide' [undefined] is not a function

On the other hand, if I select a single div with the id:

a = $('div[id=content1]')

it gives me an:

 [object Object]

The hide function a.hide() works in that case.

The question is: "How can I select all the [object Object] elements at once?" or, "How can I convert [object HTMLDivElement] to [object Object]?"

Share Improve this question edited Oct 17, 2012 at 10:59 hippietrail 17k21 gold badges109 silver badges179 bronze badges asked Aug 26, 2011 at 22:45 Gaurav ToshniwalGaurav Toshniwal 3,7222 gold badges25 silver badges24 bronze badges 1
  • BTW, alert() converts its arguments to strings which can be less than useful, as you might have noticed here. This is a terrible way to debug. Instead of using alert() for debugging, use console.log() (and friends). To see the output, open your browser's console. IE8+, Safari, and Chrome have built-in consoles; for Firefox there's Firebug. – Matt Ball Commented Aug 27, 2011 at 14:13
Add a ment  | 

3 Answers 3

Reset to default 7

You're really just looking for this:

var a = $('div[data-role=content]');
a.hide();

You don't need to explicitly iterate over every element in the jQuery object because .hide() will take care of that for you.


N.B. $.each() is for iterating over any array-like object. When you're already working with a jQuery object, though, use .each() instead of $.each().

Also, it looks like you're using an attribute selector to select elements by ID. This is a silly way to select elements, as there's a much simpler — and potentially much faster — ID selector. Here's the swap:

$('div[id=content1]') // Change this
$('div#content1')     // to this

You can do even better, though, because element IDs must be unique, which means that specifying an ID and an tag name is unnecessarily specific. So,

$('div#content1') // Change this
$('#content1')    // to this

Okay, so I couldn't resist following up on this whole ID selector bit to prove just how much faster a solo ID selector is. In my tests: an order of magnitude. http://jsperf./jq-id-selectors

The value passed to each is the actual DIV element itself, not a jQuery wrapped instance of the DIV. DIV elements don't have a hide method. You can use @Matt's suggestion which is the correct and shortest way since the .hide() call will be applied to all members of the $(...) result set. Or turn your value into a real jQuery selector with $(value).hide().

You're looking for

a.each(function(index, item){

    $(this).hide;

});

That is the each that foreaches through a jquery object and actually makes "this" available.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论