<table id="tblEmployee" class="normal_table">
<tr>
<td>Employee Name</td><td>Department Name</td><td>Salary</td>
</tr>
<tr>
<td>Jane Smith</td><td>Marketing</td><td>$95,000</td>
</tr>
<tr>
<td>John Smith</td><td>Technology</td><td>$90,000</td>
</tr>
<tr>
<td>Brian Adam</td><td>Sales</td><td>$72,000</td>
</tr>
<tr>
<td>Mary Jones</td><td>Support</td><td>$60,000</td>
</tr>
<tr>
<td>Michael Jefferson</td><td>Technology</td><td>$85,000</td>
</tr>
</table>
<br /> <input id="btnTestIt" type="button" value="Test It"> <script type="text/javascript">
$(document).ready(function () {
$("#btnTestIt").click(function () {
var jqObj = $("tr:gt(0)").map(function () {
return $(this).children().first().text();
}) $(jqObj).each(function (index, elem) {
ZEUS.DEBUG.log(elem);
}); ZEUS.DEBUG.log("---------------------------");
var employees = jqObj.get().join(", ");
ZEUS.DEBUG.log(employees);
});
});
</script>

$("tr:gt(0)") selects all the HTML elements with the tag name "tr" except for the first record and returns the
jQuery object.

.map() iterates through each element from the set of selected elements and processes them in the function.
return $(this).children().first().text() returns the text content of the first child element (td) of each
selected "tr" element, which is the employee name.
A new jQuery object (jqObj) is created that contains elements as a result of the return value of the function.

jqObj.get() gets all the HTML elements from the jQuery object as an array.

.join(", ") joins all elements from the array, delimits them with commas (,) and returns a string that contains
a comma-delimited list of all the employees’ names.

最新文章

  1. 关于asp.net利用mono部署到Linux上的一些说明
  2. iOS--高级技术
  3. iOS $299刀企业证书申请的过程以及细节补充(二)
  4. 【SPOJ QTREE2】QTREE2 - Query on a tree II(LCA)
  5. glRotate函数
  6. Stationary point
  7. js 自己创建ready多个可以依次加载
  8. KindEditor得不到textarea值的解决方法----摘至天涯
  9. 【M32】在未来时态下发展程序
  10. js 正则实例
  11. 三目运算符 改变&lt;a&gt;标签的class属性
  12. HDU 4628 Pieces(DP + 状态压缩)
  13. ADO.NET对象模型
  14. 转:Google论文之一----Bigtable学习翻译
  15. 小学生四则运算(java编程)201571030135
  16. js原型链结构与链表结构对比
  17. Python交互图表可视化Bokeh:4. 折线图| 面积图
  18. COGS.1689.[HNOI2010]Bounce 弹飞绵羊(分块)
  19. The type javax.swing.JComponent cannot be resolved. It is indirectly referenced from required .class files
  20. MVC ---- EF批处理

热门文章

  1. JavaScript中字符串分割函数split用法实例
  2. 如何上传word
  3. BZOJ 2212 [Poi2011]Tree Rotations(线段树合并)
  4. BZOJ 3669 [Noi2014]魔法森林(贪心+LCT)
  5. 【计算几何】【极角排序】Gym - 101174B - Bribing Eve
  6. 【优先队列+贪心】POJ2431-Expedition
  7. double型(双精度型)的打印(printf) 和scanf
  8. 基于socket的udp传输,socketserver模块,进程
  9. linux中django部署
  10. Educational Codeforces Round 9 B. Alice, Bob, Two Teams 前缀和