标签: jquery html
如何使用jQuery中映射函数的输出填充表的第一行。像下面的东西。
$('table tr').each(function() { $(this).find("td:first").map(function(x, i) { return i; }).html() });
答案 0 :(得分:1)
由于map函数用于数组,而带有代码的数组将是元素。
map
您应该尝试行的index()来获得所需的结果。
index()
Working sample
很高兴帮助:)
- 帮助