这是一个创建于 2553 天前的主题,其中的信息可能已经有所发展或是发生改变。
html:
<tbody>
<tr>
<td id="myid"></td>
<td id="myip"></td>
</tr>
</tbody>
</table>
---------------------------------------------------------------------------------------------------
jquery:
function getall() {
var ids=""
var ips=""
$("input[name='selected']").each(function(){
if($(this).is(":checked")){
var id=$(this).attr("id");
ids=ids+id+","
var ip=$("#netip" + id).html()
ips=ips+ip+","
}
});
$("#myid").html(ids);
$("#myip").html(ips);
}