Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
863 views
in Technique[技术] by (71.8m points)

javascript - Increment nth-child Selector of Jquery

With refernece to That

I need to iterate through nth-child selector, That is

var i =1;    
var tmp = $(this).find('td:nth-child(i+1)'); // Wondering How this behavior can be achieved     
i++;

What i have is a row/rows with dynamically generated columns in a grid, i want to loop through each grid cell and Store value of each grid cell with header i.e its ID. i was wondering if i could increment selector in nth-child so .each for every iteration it catches the next gridcell value. And so I can push its value and Id to array for further use.

Any sort of help would be appreciative.

Regards

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You cannot access a variable like 'td:nth-child(i+1)'.

Change it to:

var tmp = $(this).find('td:nth-child('+(i+1)+')');


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...