javascript - Convert DOMElement Array to jQuery Object - Stack Overflow

I am using the DataTables plugin for jQuery and need to get one of the table rows. DataTables has a fnG

I am using the DataTables plugin for jQuery and need to get one of the table rows. DataTables has a fnGetNodes function that returns an Array with all of the DOMElements of the table. I would like to use a jQuery selector to find that row (I know the id of the row), but I need to convert the Array to a jQuery Object, is this possible?

I am using the DataTables plugin for jQuery and need to get one of the table rows. DataTables has a fnGetNodes function that returns an Array with all of the DOMElements of the table. I would like to use a jQuery selector to find that row (I know the id of the row), but I need to convert the Array to a jQuery Object, is this possible?

Share Improve this question edited May 19, 2011 at 10:58 Gabriele Petrioli 196k34 gold badges271 silver badges328 bronze badges asked Jun 5, 2010 at 17:46 Tim NTim N 1501 gold badge1 silver badge8 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

To get a jQuery object from an Array of nodes, you can just pass it to jQuery:

var nodes = [document.documentElement, document.documentElement.firstChild];
var extendedNodes = $(nodes);

According to http://api.jquery./jQuery/ you can do just that:

jQuery( elementArray )

elementArrayAn array containing a set of DOM elements to wrap in a jQuery object.

If it doesn't work, possibly your array is not an actual array, so you can try:

$('#id',$($.makeArray(array)));

Logically you could do it with

var $row = $(dom_array).filter( 
               function(index){ 
                   return $(this).attr('id') == 'some_id'; 
               } 
           );

this will return a jQuery object of the row with the specified id.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743599034a4476832.html

相关推荐

  • javascript - Convert DOMElement Array to jQuery Object - Stack Overflow

    I am using the DataTables plugin for jQuery and need to get one of the table rows. DataTables has a fnG

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信