我有以下 HTML 表:
<table class="display" style="width: 1000px;" id="failoverServers">
<thead>
<tr>
<th class="row_selector_head"> <input type='checkbox' class='select_all_chkbx'/></th>
<th><div>{% trans "IP ADDRESS" %}</div></th>
<th><div>{% trans "VIRTUAL IP ADDRESS" %}</div></th>
<th><div>{% trans "USERNAME" %}</div></th>
<th><div></div></th>
</tr>
</thead>
<tbody>
{% for i in list %}
<tr rel="{{ i.id }}">
<td class="row_selector"><input type='checkbox'/></td>
<td rel="ip">{{ i.ipAddress }}</td>
<td rel="virtualIP">{{ i.virtualIpAddress }}</td>
<td rel="username">{{ i.username }}</td>
</tr>
{% endfor %}
</tbody>
</table>
如果我执行以下操作:
var list = "";
$('#failoverServers td.row_selector.selected').each(function() {
var row = $(this).closest('tr');
var id = row.attr('rel');
list += id + " ";
});
然后我在第一个复选框列中有一个数字列表。
我想从表中获取以下列表:
<td rel="ip">{{ i.ipAddress }}</td>
我为此使用什么 jquery 选择器?
谢谢