简体   繁体   中英

jQuery select ID from comma separated list

Is there a simple one liner I can use to select the nth element from a comma separated list in jQuery?

For example if I have: var eg = "a,b,c,d";

How can I select element c?

var eg = "a,b,c,d";
eg.split(",")[2];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM