jQuery - Get element from array as jQuery element?

前端 未结 1 1829
旧时难觅i
旧时难觅i 2020-12-14 15:29

If I call

$(\".myClass\")

I get an array of elements. If I now want to get the first element as jquery element I would do something like th

相关标签:
1条回答
  • 2020-12-14 15:56

    Use the eq() method:

    $(".myClass").eq(0)
    

    This returns a jQuery object, whereas .get() returns a DOM element.

    .eq() lets you specify the index, but if you just want the first you can use .first(), or if you just want the last you can use (surprise!) .last().

    "I get an array of elements."

    No you don't, you get a jQuery object which is an array-like object, not an actual array.

    If you plan to use jQuery much I suggest spending half an hour browsing through the list of all methods.

    0 讨论(0)
提交回复
热议问题