使用jQuery收集join concatenate打印显示每个div的内容值html文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery收集join concatenate打印显示每个div的内容值html文本相关的知识,希望对你有一定的参考价值。

  1. /** v0.1 - 20081028 - thanks to Christian Oudard & Shog9 on StackOverflow - http://bit.ly/aqEKhO
  2. v0.2 - 201007100030 - brandonjp **/
  3.  
  4.  
  5. /** specify an element, then collect the contents from each one on the page
  6. then concatenate all those contents and display them in one list/string **/
  7.  
  8. // first, a variable for the element we want to collect
  9. var theElements = $("td.fonta");
  10.  
  11. // second, a variable for the separater we want between each
  12. // by default the 'join()' method returns comma separated values
  13. var betweenEach = "";
  14.  
  15. // create the empty array where we'll store everything
  16. var allCurries = [];
  17.  
  18. // now we actually get the elements we want and for each
  19. theElements.each(function() {
  20. // grab our array and push each element's text() into it
  21. allCurries.push( $(this).text() );
  22. });
  23.  
  24. // create a new object that joins everything in our array
  25. var allTogether = allCurries.join(betweenEach);
  26.  
  27. // inject, print, show, alert or display our final list
  28. $('div#output').replaceWith(allTogether);
  29.  
  30.  
  31.  
  32.  
  33.  
  34. /** or the short version **/
  35.  
  36. var arr = [];
  37. $('td').each(function() {
  38. arr.push($(this).text());
  39. });
  40. alert(arr.join(''));

以上是关于使用jQuery收集join concatenate打印显示每个div的内容值html文本的主要内容,如果未能解决你的问题,请参考以下文章

使用 wpdb prepare 安全地收集带有“join”的“where”子句数组

JQuery中的push和join

jQuery中的join方法

03Java 8 - Collectors.joining() 详解

jQuery代码开发技巧收集,jquery常用的开发代码

使用 Jquery 收集数组中的行 ID,然后为新表查询这些值