编程语言
首页 > 编程语言> > javascript-如何使用jquery在一页中获取所有>标签的内容

javascript-如何使用jquery在一页中获取所有>标签的内容

作者:互联网

我有一个类似这样的html列表:

<li id="tag">red</li>
<li id="tag">yellow</li>
<li id="tag">blue</li>

如何使用jQuery获取这些li标签的内容?

例如;

$tags = red, yellow, blue

解决方法:

您可以使用jQuery.map()

Live Demo

texts = $('li').map(function(){
  return $(this).text();
}).get().join(',');

标签:javascript,jquery,jquery-selectors,html-lists
来源: https://codeday.me/bug/20191013/1910322.html